c 資料庫連線

2021-04-21 22:04:50 字數 557 閱讀 9745

c#資料庫連線

sqlconnection oconn;

string strconn;

oconn = new sqlconnection();

strconn = "data source=localhost//sqlexpress;initial catalog=asfd;integrated security=sspi";

oconn.connectionstring = strconn;

oconn.open();

sqlcommand mycommand = new sqlcommand("select username,password from password", oconn);

sqldatareader mydatareader = mycommand.executereader();

登陸while (mydatareader.read())

}messagebox.show("使用者名稱或密碼錯誤!", "非法登陸", messageboxbuttons.ok, messageboxicon.error);

}

C 資料庫連線

方法 解釋方法 解釋sqlconnection 建立資料庫連線物件 open 開啟資料庫連線 close 關閉資料庫連線 connectionstring 設定連線字串 方法解釋 方法解釋 sqlcommand string sql,sqlconnection con 表示要對資料庫執行的乙個 tr...

c 資料庫連線

1.連線access 資料庫 access 2000 provider microsoft.jet.oledb.3.5 data source access檔案路徑 access 2003 provider microsoft.jet.oledb.4.0 data source access檔案路徑...

c 資料庫連線類

c 資料庫連線類 using system using system.data using system.data.sqlclient using system.data.oledb namespace db public class database 根據sql查詢返回dataset物件,如果沒有...