連線資料庫的偷懶小技巧

2021-04-01 21:49:43 字數 1519 閱讀 3931

做**測試的時候,一般都要把做的東西放到伺服器上,再進行測試,這個時候都要修改資料庫的連線。這裡給大家介紹乙個偷懶的方法。

說明:這裡以sql舉例,其他的資料庫使用的方法也是類似的

1) 在 web.config檔案裡進行資料庫的連線。**如下:

<

>

<

add key="

connstr

"value="

server=;database=;user id=;password=;

"/>

>

2)具體呼叫連線資料庫  

dimmyconnection 

asnew

"connstr"))

3)以後一但資料庫連線要變化的時候就只需要改變web.config裡的連線字串就可以了

thinkphp配置連線資料庫技巧

1.在thinkphp入口檔案同目錄下的config.inc.php中新增資料庫程式設計客棧配置資訊 複製 如下 return array db type mysqli db host localhost db name demo db user root db pwd root db prefix...

連線資料庫

2 documents 目錄就是我們可以用來寫入並儲存檔案得地方,一般可通過 nsarray paths nssearchpathfordirectoriesindomains nsdocumentdirectory,nsuserdomainmask,yes nsstring documentsdi...

連線資料庫

1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin localhost 1521 orcl orcl為資料庫的sid strin...