資料庫連線

2021-09-30 15:31:56 字數 876 閱讀 3555

其實連線資料庫大致都有以下幾步:

1.建立資料庫驅動,並開啟驅動

2.建立資料庫指令

3.讀取和執行指令

知道了步驟後,那我們來嘗試下 :

//datasource為資料來源,database為你要連線的資料庫,integrated security=true

是指使用者不用通過身份驗證來連線資料庫

string info= "datasource=localhost;database=usertables;integrated security=true";

string searchtableinfo = "select *from useraccount";//查詢表

useraccount

中的資訊

//建立資料庫驅動,並開啟驅動

sqlconnection conn= new

sqlconnection(info);

try

catch (exception)

sqlcommand sc =

newsqlcommand(

searchtableinfo, conn);//建立資料庫指令

sqldatareader cc =sc.executereader();//讀取和執行指令

//輸出表資訊(在這裡我建的useraccount這個表只有兩行兩列,故i<3)

while(cc.read())

//關閉資料庫

cc.close();

conn.close();

其實sqlserver的連線上述幾步就可以實現了, 不算複雜把, 當然我這裡指的只是資料庫最基礎的東西, 要想深入只有靠自己去研究,理解 ,冰凍三尺非一日之寒,只要不斷努力,我相信你一定可以獲得很多

資料庫連線

第一,設定允許遠端連線,允許sql server驗證 第二,建立登陸帳戶並授權 第三,註冊sql server資料庫 c windows microsoft.net framework v2.0.50727 下執行 aspnet regsql 指令 data server sqlexpress in...

資料庫連線

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...