我正面临来自sql server的问题
SqlDataAdapter sda = new SqlDataAdapter(
"Select Role from Login where username ='" + textBox1.Text + "' and password '" + textBox2.Text + "' ",
con);
我的sql命令总是从以前的数据库中获取数据,而不是从新数据库中获取数据。
答案 0 :(得分:0)
您的连接(con)指向您的旧数据库,将其更改为新数据库。