注意事项:
1.先在databa.php中配置好数据库
2.只要是数据库操作必须引用 u/think/db;严格区分大小写。
下面是方法:
public function hello5() { //所有查询必须 u/think/db; /* 1 配置数据库 * 2 使用db 命名空间 * */ /****************t桉树苗p5中使用原生语句*******************/ //query 用于查询 其他的用execute // 插入记录// $result = db::execute('inrt into sb_ad (ad_name, ad_content ,status) values (1, "456",1)');// dump($result); // 更新记录// $result = db::execute('update sb_ad t ad_name = "framework" where ad_id = 1 ');// dump($result); // 查询数据// $result = db::query('lect * from sb_ad where ad_id = 1');// print_r($result); // 删除数据// $result = db::execute('delete from sb_ad where ad_id = 2 ');// dump($result); //其它操作 // 显示数据库列表// $result = db::query('show tables from tpshop1');// print_r($result);// 清空数据表// $result = db::execute('truncate table sb_ad');// dump($result); /**************多个数据库操作************/ //在application/con忘了自己fig.php中加入配置 //例子: /* * /智商最高/ 数据库配置1 'db2' => [ // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'databa' => 'tpshop2', // 数据库用户名 'urname' => 'root', // 数据库密码 'password' => '', // 数据库连接端口 'hostport' => '', // 数据库连接参数 'params' => [], // 数据库编码默认采用utf8 'chart' => 'utf8', // 数据库表前缀 'prefix' => 'tp_', ], 依次类推 */ //connect为链接数据库// $result = db::connect('db2')->query('lect * from sb_ad where ad_id = 1');// print_r($result);// $result = db::connect('db3')->query('lect * from sb_ad where ad_id = 1'); // print_r($result); // $db1 = db::connect('db1');获取数据库对象// $db2 = db::connect('db2');获取数据库对象然后再操作// $db1->query('lect * from sb_ad where ad_id = 1');// $db2->query('lect * from sb_ad where ad_id = 1'); /*****参数绑定******/// db::execute('inrt into sb_ad (ad_name, ad_content ,status) values (?, ?, ?)', [3, 'thinkphp', 1]);// $result = db::query('lect * from sb_ad where ad_id = ?', [3]);// print_r($result); /******命名占位符绑定*****/// db::execute('inrt into sb_ad (ad_name, ad_content ,status) values (:ad_name, :ad_content, :status)', 北宋文坛四大家['ad_name' => 11, 'ad_content' => 'thinkphp', 'status' => 1]);// $result = db::query('lect * from sb_ad where ad_id=:id', ['id' => 10]);// print_手部保养r($result);
原文链接:
本文发布于:2023-04-07 21:52:51,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/bfffc4a0fbe92463bcf4754b04090f89.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:tp5中使用原生sql查询总结【转】.doc
本文 PDF 下载地址:tp5中使用原生sql查询总结【转】.pdf
留言与评论(共有 0 条评论) |