c 對資料庫的操作

2021-09-06 10:29:20 字數 891 閱讀 1825

1.首先需要引用

using system.data.sqlclient;
2.建立連線

sqlconnection connection = new

sqlconnection();

connection.connectionstring = "

data source= ip位址; initial catalog = 資料庫名稱; user id = 資料庫使用者名稱; password=密碼

";connection.open(); //開啟連線

3.執行操作

資料庫表名稱:test 引數:id(主鍵),name,age

新增資料

private

void button1_click(object

sender, eventargs e)

//

修改資料

private

void button2_click(object

sender, eventargs e)

//

刪除資料

private

void button3_click(object

sender, eventargs e)

4.讀取資料

sqldatareader reader =command.executereader();

if (reader.hasrows) //判斷是否有資料

}

C 對資料庫各種操作

using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text u...

C 對資料庫各種操作

using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text u...

對資料庫的操作

資料庫的檔案 資料檔案 包含資料和物件,主資料檔案建議副檔名.mdf,其餘.ndf 事務日誌檔案 包含恢復資料庫中的所有事物所需的資訊,建議副檔名.ldf 至少包含乙個資料檔案和乙個日誌檔案 對資料庫的操作 選其中乙個,可以選 選其中乙個,必選 分割,表示多個選項 表示說明 建立create dat...