連接SQL SERVER的數(shù)據(jù)訪問(wèn)實(shí)例
(1)啟動(dòng)visual studio .net,新建一個(gè)windows 應(yīng)用程序。
(2)從工具欄中拖動(dòng)一個(gè)Button控件到頁(yè)面中,將ID設(shè)為btnconnect,Text屬性為“點(diǎn)擊連接數(shù)據(jù)庫(kù)”。
(3)在Form1.cs文件中添加名稱空間
using System.Data.SqlClient;
(4)雙擊btnConnect控件,在Click事件相關(guān)處理程序btnconnect_click中輸入以下代碼:
try
{ SqlConnection conn=new SqlConnection( );
conn.ConnectionString=“Data Source=(local);user id=sa;password=1234; initial Catalog=student;”;
conn.Open( );
if(conn.State==ConnectionState.Open)
MessageBox.Show(“連接已經(jīng)打開”);
conn.Close( );
if(conn.State==ConnectionState.Closed)
MessageBox.Show(“連接已經(jīng)關(guān)閉”);
}
catch(Exception e)
{ MessageBox.Show(“連接失敗,原因可能是“+e.Message);
5、按ctrl+f5運(yùn)行項(xiàng)目,單擊表單中的”點(diǎn)擊連接數(shù)據(jù)庫(kù)“按鈕,如果數(shù)據(jù)庫(kù)連接成功,則將依次彈出兩個(gè)對(duì)話框。
6、如果連接不成功,則會(huì)得到提示錯(cuò)誤信息的頁(yè)面。
點(diǎn)擊加載更多評(píng)論>>