資料庫連線

2021-04-15 14:27:18 字數 937 閱讀 3102

第一,設定允許遠端連線,允許sql server驗證

第二,建立登陸帳戶並授權

第三, 註冊sql server資料庫 ,c:/windows/microsoft.net/framework/v2.0.50727」下執行「aspnet_regsql」指令

data server=./sqlexpress;initial catalog=northwind;user id=sa;password=sa123456

第五,設定web.config檔案

在web.config檔案新增如下程式:

資料庫連線字串有好幾種,相信你自己也見過,都被搞暈了

data server=./sqlexpress;initial catalog=northwind;user id=sa;password=sa123456

data server=伺服器名/sqlexpress;initial catalog=northwind;user id=sa;password=sa123456

data server=localhost/sqlexpress;initial catalog=northwind;user id=sa;password=sa123456

data server=.;initial catalog=northwind;user id=sa;password=sa123456

data server=伺服器名;initial catalog=northwind;user id=sa;password=sa123456

……到底那種正確?這跟資料庫版本有關係,如果是sql server 2005 express版本,則必須要有「/sqlexpress」。而且如果這個字串是定義為乙個變數的時候,vs2005還會在「/」的下面加個紅色的波浪線提示你「/s是無法識別的轉義序列」,因此如果字串是定義為乙個變數的時候應該寫成server=.//sqlexpress

資料庫連線

php host localhost host name db user root mysql username db password root mysql password db name table database name connect to server and select data...

資料庫連線

1.c 連線連線access 程式 using system.data using system.data.oledb string strconnection provider microsoft.jet.oledb.4.0 strconnection data source c begaspne...

資料庫連線

建立資料庫是基本的資料庫操作任務。使用ado.net 的connection物件來連線資料庫。連線microsoft sql server 7.0 更高版本,推薦使用sql server.net framework 資料提供程式的sqlconnection物件。若要連線到odbc資料來源,請使用od...