码迷,mamicode.com
首页 > 其他好文 > 详细

2018.09.16 命令参数的使用

时间:2018-09-17 00:03:19      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:参数   9.1   family   value   rgs   create   char   void   sql   

private void btn_Login_Click(object sender, EventArgs e)
{
SqlConnection sqlConnection = new SqlConnection();
sqlConnection.ConnectionString =
"Server=(local);Database=EduBaseDemo;Integrated Security=sspi";
SqlCommand sqlCommand = sqlConnection.CreateCommand();

sqlCommand.CommandText =

"SELECT COUNT(1) FROM tb_User WHERE No=@No AND Password=HASHBYTES(‘MD5‘,@Password);")
SqlParameter sqlParameter = new SqlParameter(); 
sqlParameter.ParameterName = "@No"; 
sqlParameter.Value = this.UserNo.Text.Trim(); 
sqlParameter.SqlDbType = SqlDbType.Char; 
sqlParameter.Size = 10; 
sqlCommand.Parameters.Add(sqlParameter); 
sqlConnection.Open();
int rowCount = (int)sqlCommand.ExecuteScalar(); 
sqlConnection.Close(); 
if (rowCount == 1) 
{
MessageBox.Show("登录成功。"); 
}
else 
{
MessageBox.Show("用户号/密码有误,请重新输入!"); 
this.Password.Focus(); 
this.Password.SelectAll(); 
}
}

2018.09.16 命令参数的使用

标签:参数   9.1   family   value   rgs   create   char   void   sql   

原文地址:https://www.cnblogs.com/Holiday-L/p/9658011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!