文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
debug
Debug
输入 sql 语句,但不执行
debug()
Return: 开启 Medoo 调试模式
输出 sql 语句,不需要使用 echo 或其它方法。调试完成请移除此代码
$database->debug()->select("bccount", [
"user_name",
"email"], [
"user_id[ 20]);
// Will output:
// SELECT "user_name","email" FROM "bccount" WHERE "user_id"
insert("account", [
"user_name" => "foo",
"email" => "foo@bar.com"]
);
// Will output the generated query
$post_id = $database->debug()->get("post", "post_id", ["user_name" => "foo"]);
// Be careful, this query will be executed.
$database->update("account", [
"level[+]" => 5,
"post" => $post_id], [
"user_name" => "foo"]
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论