PHP tp5中使用原生sql查詢(xún)代碼實(shí)例
注意事項(xiàng):
1.先在database.php中配置好數(shù)據(jù)庫(kù)
2.只要是數(shù)據(jù)庫(kù)操作必須引用 use/think/Db;嚴(yán)格區(qū)分大小寫(xiě)。
下面是方法:
public function hello5() { //所有查詢(xún)必須 use/think/Db; /* 1 配置數(shù)據(jù)庫(kù) * 2 使用DB 命名空間 * */ /****************tp5中使用原生語(yǔ)句*******************/ //query 用于查詢(xún) 其他的用execute// 插入記錄// $result = Db::execute(’insert into sb_ad (ad_name, ad_content ,status) values (1, '456',1)’);// dump($result); // 更新記錄// $result = Db::execute(’update sb_ad set ad_name = 'framework' where ad_id = 1 ’);// dump($result);// 查詢(xún)數(shù)據(jù)// $result = Db::query(’select * from sb_ad where ad_id = 1’);// print_r($result); // 刪除數(shù)據(jù)// $result = Db::execute(’delete from sb_ad where ad_id = 2 ’);// dump($result); //其它操作 // 顯示數(shù)據(jù)庫(kù)列表// $result = Db::query(’show tables from tpshop1’);// print_r($result);// 清空數(shù)據(jù)表// $result = Db::execute(’TRUNCATE table sb_ad’);// dump($result); /**************多個(gè)數(shù)據(jù)庫(kù)操作************/ //在application/config.php中加入配置 //例子: /* * // 數(shù)據(jù)庫(kù)配置1’db2’ => [ // 數(shù)據(jù)庫(kù)類(lèi)型 ’type’ => ’mysql’, // 服務(wù)器地址 ’hostname’ => ’127.0.0.1’, // 數(shù)據(jù)庫(kù)名 ’database’ => ’tpshop2’, // 數(shù)據(jù)庫(kù)用戶(hù)名 ’username’ => ’root’, // 數(shù)據(jù)庫(kù)密碼 ’password’ => ’’, // 數(shù)據(jù)庫(kù)連接端口 ’hostport’ => ’’, // 數(shù)據(jù)庫(kù)連接參數(shù) ’params’ => [], // 數(shù)據(jù)庫(kù)編碼默認(rèn)采用utf8 ’charset’ => ’utf8’, // 數(shù)據(jù)庫(kù)表前綴 ’prefix’ => ’tp_’,],依次類(lèi)推 */ //connect為鏈接數(shù)據(jù)庫(kù)// $result = Db::connect(’db2’)->query(’select * from sb_ad where ad_id = 1’);// print_r($result);// $result = Db::connect(’db3’)->query(’select * from sb_ad where ad_id = 1’); // print_r($result); // $db1 = Db::connect(’db1’);獲取數(shù)據(jù)庫(kù)對(duì)象// $db2 = Db::connect(’db2’);獲取數(shù)據(jù)庫(kù)對(duì)象然后再操作// $db1->query(’select * from sb_ad where ad_id = 1’);// $db2->query(’select * from sb_ad where ad_id = 1’); /*****參數(shù)綁定******/// Db::execute(’insert into sb_ad (ad_name, ad_content ,status) values (?, ?, ?)’, [3, ’thinkphp’, 1]);// $result = Db::query(’select * from sb_ad where ad_id = ?’, [3]);// print_r($result); /******命名占位符綁定*****/// Db::execute(’insert 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(’select * from sb_ad where ad_id=:id’, [’id’ => 10]);// print_r($result);
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. 前端html+css實(shí)現(xiàn)動(dòng)態(tài)生日快樂(lè)代碼2. 不要在HTML中濫用div3. el-input無(wú)法輸入的問(wèn)題和表單驗(yàn)證失敗問(wèn)題解決4. CSS3實(shí)例分享之多重背景的實(shí)現(xiàn)(Multiple backgrounds)5. XML基本概念XPath、XSLT與XQuery函數(shù)介紹6. XML入門(mén)的常見(jiàn)問(wèn)題(四)7. WML的簡(jiǎn)單例子及編輯、測(cè)試方法第1/2頁(yè)8. vue實(shí)現(xiàn)復(fù)制文字復(fù)制圖片實(shí)例詳解9. 關(guān)于html嵌入xml數(shù)據(jù)島如何穿過(guò)樹(shù)形結(jié)構(gòu)關(guān)系的問(wèn)題10. XML入門(mén)的常見(jiàn)問(wèn)題(三)
