如何在C#用代码把SQL2000中某项数据提取出来!!
展开全部
string ConnectionString = "server=WWW-02D3C19166C\\SQLEXPRESS;database=MessageDB;uid=sa;pwd=sa"; SqlConnection conn = new SqlConnection(ConnectionString); conn.Open(); //你可以查询所有的列,或某你所要的一列 代替*号 string sql = "select * from users"; SqlCommand cmd = new SqlCommand(sql, conn); DataTable dt = new DataTable(); SqlDataAdapter da = new SqlDataAdapter(cmd); da.Fill(dt); if (dt.Rows.Count > 0) { for (int i = 0; i < dt.Rows.Count; i++) { //if (TextBox1.Text ==dt.Rows[i][1].ToString()) if (TextBox1.Text == dt.Rows[i]["username"].ToString()) { //存在…… Response .Write ("<script> alert('存在这样的值与textbox中的值相等')</script>"); } } }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询