执行查找

2018-02-24 15:52 更新

如果配置好数据库连接,就可以通过 DB facade 执行查找。

执行 Select 查找

$results = DB::select('select * from users where id = ?', [1]);

select 方法会返回一个 array 结果。

You may also execute a query using named bindings:

$results = DB::select('select * from users where id = :id', ['id' => 1]);

执行 Insert 语法

DB::insert('insert into users (id, name) values (?, ?)', [1, 'Dayle']);

执行 Update 语法

DB::update('update users set votes = 100 where name = ?', ['John']);

执行 Delete 语法

DB::delete('delete from users');

注意: update 和 delete 语法会返回在操作中所影响的数据笔数。

执行一般语法

DB::statement('drop table users');

监听查找事件

你可以使用 DB::listen 方法,去监听查找的事件:

DB::listen(function($sql, $bindings, $time)
{
    //
});
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号