您好,登錄后才能下訂單哦!
String userName = textBox1.Text;//用戶名
String userPw = textBox2.Text;//密碼
string connString = @"Data Source=ASUS\SQLEXPRESS;Initial Catalog=StudentScore;Integrated Security=True";
SqlConnection conn = new SqlConnection(connString);
string sql = String.Format("select count(*) from [user] where UserName='{0}'and Password='{1}'", userName, userPw);
try
{
conn.Open();// 打開數據庫連接
SqlCommand comm = new SqlCommand(sql, conn); //創建 Command 對象
int n = (int)comm.ExecuteScalar();//執行查詢語句,返回匹配的行數
if (n==1)
{
Console.WriteLine("----->" + userName + " " + userPw + "登陸成功");
this.DialogResult = DialogResult.OK;
this.Tag = true;
Form2 f2 = new Form2();
f2.Show();
this.Hide();
}
else
{
MessageBox.Show("用戶名或者密碼錯誤", "登錄失敗",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
this.Tag = false;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "操作數據庫出錯!",
MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
this.Tag = false;
}
finally
{
conn.Close(); // 關閉數據庫連接
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。