查询构造器
Db::table('think_data')
Db::name('data') 因为配置了前缀
$db = db('data');db()助手函数尽量避免使用
事务操作
Db::transaction(function () { Db::table('think_user') ->delete(1); Db::table('think_data') ->insert(['id' => 28, 'name' => 'thinkphp', 'status' => 1]); });
或者
// 启动事务 Db::startTrans(); try { Db::table('think_user') ->delete(1); Db::table('think_data') ->insert(['id' => 28, 'name' => 'thinkphp', 'status' => 1]); // 提交事务 Db::commit(); } catch (\Exception $e) { // 回滚事务 Db::rollback(); }
视图查询
字符串查询
日期查询
网友评论