C#写的一个登录窗口,需要连接数据库进行登录验证,应该怎么做?
我的环境:VS2012,Sql2008.数据库中密码的数据类型是:varbinary(MAX),用户名的数据类型是:varchar。如下图:麻烦各位啦......
我的环境:VS2012 ,Sql2008.
数据库中密码的数据类型是:varbinary(MAX),用户名的数据类型是:varchar。如下图:
麻烦各位啦... 展开
数据库中密码的数据类型是:varbinary(MAX),用户名的数据类型是:varchar。如下图:
麻烦各位啦... 展开
展开全部
主窗体 Load 事件里丢入以下代码 (适当改动 连接字符串 和 Query 语句 )
string strcon = "Data Source = 127.0.0.1;Initial Catalog = YouDbName ;Password = your password;Integrated Security = true";
SqlConnection con = null;
SqlCommand cmd = null;
SqlDataReader sdr = null;
bool isLogin = false;
try
{
con = new SqlCommand (strCon);
cmd = con.CreateCommand();
cmd.CommandText =string.Format( "select * from yourTableName where u_Name= '{0}' and u_password = '{1}'",textBoxUserName.Text,textBoxPassword.Text);
con.open();
sdr = cmd.ExecuteReader();
while(sdr.Read())
{
isLogin=true;
}
if(isLogin)
{
MessageBoxShow("login sucess!!!");
}
else
{
MessageBoxShow("login fail!!!");
}
}
catch(Exception ex)
{
MessageBoxShow(ex.Message);
}
finally
{
sdr.Close();
cmd.Close();
con..Close();
}
string strcon = "Data Source = 127.0.0.1;Initial Catalog = YouDbName ;Password = your password;Integrated Security = true";
SqlConnection con = null;
SqlCommand cmd = null;
SqlDataReader sdr = null;
bool isLogin = false;
try
{
con = new SqlCommand (strCon);
cmd = con.CreateCommand();
cmd.CommandText =string.Format( "select * from yourTableName where u_Name= '{0}' and u_password = '{1}'",textBoxUserName.Text,textBoxPassword.Text);
con.open();
sdr = cmd.ExecuteReader();
while(sdr.Read())
{
isLogin=true;
}
if(isLogin)
{
MessageBoxShow("login sucess!!!");
}
else
{
MessageBoxShow("login fail!!!");
}
}
catch(Exception ex)
{
MessageBoxShow(ex.Message);
}
finally
{
sdr.Close();
cmd.Close();
con..Close();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询