這篇文章主要介紹“如何實現(xiàn)thinkphp 框架數(shù)據(jù)庫切換”,在日常操作中,相信很多人在如何實現(xiàn)thinkphp 框架數(shù)據(jù)庫切換問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何實現(xiàn)thinkphp 框架數(shù)據(jù)庫切換”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供浦東網(wǎng)站建設(shè)、浦東做網(wǎng)站、浦東網(wǎng)站設(shè)計、浦東網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、浦東企業(yè)網(wǎng)站模板建站服務(wù),十余年浦東做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。//數(shù)據(jù)庫配置1 'db_config1' => [ // 數(shù)據(jù)庫類型 'type' => 'mysql', // 服務(wù)器地址 'hostname' => '127.0.0.1', // 數(shù)據(jù)庫名 'database' => 'thinkphp', // 數(shù)據(jù)庫用戶名 'username' => 'root', // 數(shù)據(jù)庫密碼 'password' => '', // 數(shù)據(jù)庫編碼默認(rèn)采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => 'think_', ], //數(shù)據(jù)庫配置2 'db_config2' => 'mysql://root:1234@localhost:3306/thinkphp#utf8';
//默認(rèn)數(shù)據(jù)庫讀取數(shù)據(jù) $test = Db::name("test")->select(); //第二個數(shù)據(jù)庫讀取數(shù)據(jù) $test1=Db::connect("DB_Config_1")->name("test")->select();
application/config.php
$db1 = [ 'type'=>'mysql', 'hostname'=>'127.0.0.1', 'database'=>'testA', 'username'=>'root', 'password'=>'123456', 'hostport'=>'3306', 'params'=>[], 'charset'=>'utf8', 'prefix'=>'', ], $db2 = [ 'type'=>'mysql', 'hostname'=>'127.0.0.1', atabase'=>'testB', 'username'=>'root', 'password'=>'123456', 'hostport'=>'3306', 'params'=>[], 'charset'=>'utf8', 'prefix'=>'', ], Db::connect('db1')->query('select * from user where age=25');
我們可以在調(diào)用Db類的時候動態(tài)定義連接信息,例如:
Db::connect([ // 數(shù)據(jù)庫類型 'type' => 'mysql', // 數(shù)據(jù)庫連接DSN配置 'dsn' => '', // 服務(wù)器地址 'hostname' => '127.0.0.1', // 數(shù)據(jù)庫名 'database' => 'thinkphp', // 數(shù)據(jù)庫用戶名 'username' => 'root', // 數(shù)據(jù)庫密碼 'password' => '', // 數(shù)據(jù)庫連接端口 'hostport' => '', // 數(shù)據(jù)庫連接參數(shù) 'params' => [], // 數(shù)據(jù)庫編碼默認(rèn)采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => 'think_', ]);
或者使用字符串方式:
Db::connect('mysql://root:1234@127.0.0.1:3306/thinkphp#utf8');
字符串連接的定義格式為:
數(shù)據(jù)庫類型://用戶名:密碼@數(shù)據(jù)庫地址:數(shù)據(jù)庫端口/數(shù)據(jù)庫名#字符集
注意:字符串方式可能無法定義某些參數(shù),例如前綴和連接參數(shù)。
如果我們已經(jīng)在應(yīng)用配置文件(注意這里不是數(shù)據(jù)庫配置文件)中配置了額外的數(shù)據(jù)庫連接信息,例如:
//數(shù)據(jù)庫配置1 'db_config1' => [ // 數(shù)據(jù)庫類型 'type' => 'mysql', // 服務(wù)器地址 'hostname' => '127.0.0.1', // 數(shù)據(jù)庫名 'database' => 'thinkphp', // 數(shù)據(jù)庫用戶名 'username' => 'root', // 數(shù)據(jù)庫密碼 'password' => '', // 數(shù)據(jù)庫編碼默認(rèn)采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => 'think_', ], //數(shù)據(jù)庫配置2 'db_config2' => 'mysql://root:1234@localhost:3306/thinkphp#utf8';
我們可以改成
Db::connect('db_config1'); Db::connect('db_config2');
database.php是框架默認(rèn)的數(shù)據(jù)庫配置,里面寫數(shù)據(jù)庫1的信息,新建了個database2.php是放置數(shù)據(jù)庫2的信息。
創(chuàng)建完數(shù)據(jù)庫2之后,在config配置文件里,文件最后引入數(shù)據(jù)庫2的配置信息
$db_con2 = require_once ('database2.php'), 'db_con2' => $db_con2,
選擇數(shù)據(jù)庫1的時候,我是用模型查詢的直接寫SQL語句:
//模型查詢 $user = new User(); $result = $user->where('username', $data['username']) ->where('password', $data['password']) ->find();
或者
User::where('id','1')->find(); //普通結(jié)構(gòu)查詢 Db::table('think_user')->where('id',1)->find();
查詢數(shù)據(jù)庫2的信息時,調(diào)用普通查詢語句:
$list = Db::connect('db_con2') ->table('nrf_amf_reg_info') ->alias('r') ->join('nrf_amf_server s','r.Id = s.nrf_amf_reg_Id','LEFT') ->paginate();
或者
$list = Db::connect('db_con2')->name('nrf_disc_record')->paginate();
注:nrf_amf_reg_info和nrf_disc_record為表名
到此,關(guān)于“如何實現(xiàn)thinkphp 框架數(shù)據(jù)庫切換”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
網(wǎng)站名稱:如何實現(xiàn)thinkphp框架數(shù)據(jù)庫切換-創(chuàng)新互聯(lián)
標(biāo)題路徑:http://weahome.cn/article/dedghd.html