如果你忘記伊莉的密碼,請在登入時按右邊出現的 '找回密碼'。輸入相關資料後送出,系統就會把密碼寄到你的E-Mail。
因為你只是讀取資料,所以我假設你不會有修改的需要。
在 .NET 的環境裡,讀取資料的選擇不只一種,但是較直覺的做法就是用 System.Data.SqlClient 命名空間提供的內建功能,也就是透過 SqlConnection、SqlCommand、SqlDataReader 這幾個物件就能從 SQL Server 中讀取你要的資料。
首先,你要先使用 SqlConnection 連線到資料庫:- string connectionStr = "server=localhost\\sqlexpress;database=Northwind;integrated security=SSPI;";
- SqlConnection cn = new SqlConnection(connectionStr);
複製代碼 接著,藉由你的SQL指令,明確指明要讀取資料的範圍:- string qs = "select 第一 from 資料表 where ID=001;";
- SqlCommand command = new SqlCommand(qs, cn);
複製代碼 最後,再以 SqlDataReader 將讀取到的資料取出來:- SqlDataReader dr = command.ExecuteReader();
- while ((dr.Read()))
- {
- TextBox1.Text = dr["第一"].ToString();
- }
複製代碼 記得,程式一開始要引用 System.Data.SqlClient 命名空間。
... |