2017年3月21日 星期二
[C#]連接字串變成一個clss
連接字串變成一個clss,可以重複使用,只要帶參數進去
protected void Page_Load(object sender, EventArgs e)
{
string text = "參數";
connection1(text);
}
public void connection1 (string text)
{
SqlConnection conn = new SqlConnection("Data Source=IP位置;Initial Catalog=資料庫;Persist Security Info=True;User ID=使用者ID;Password=使用者密碼");
SqlCommand cmd = new SqlCommand("sql字串 where id=@id", conn);
cmd.Parameters.AddWithValue("@id", text);
SqlDataReader Rd;
conn.Open();
//cmd.Connection = conn;
Rd = cmd.ExecuteReader();
while (Rd.Read())
{
Response.Write("ok");
}
conn.Close();
}
P.S.自己想的,以前面試被問到。
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言