string ConStr = "Provider=Microsoft.Jet.OLEDB.4.0;data source=wh.mdb";
OleDbConnection con = new OleDbConnectionConStr);
string sel = "select lev from use where name = '" + comboBox_Name.Text + "' and password = '" + textBox_Password.Text.Trim () + "'
con.Open();
OleDbCommand cmd = new OleDbCommand(sel, con);
//数据库内 name为用户名、password 为密码、lev为此用户的权限
string lev = Convert.ToString(cmd.ExecuteScalar());//读取权限值 ,当没有相应帐号时,则读不到权限值。
con.Close();
if (lev !="")
{
MessageBox.Show("登录成功!", "提示");
}
else
{
MessageBox.Show("账号或者密码错误!", "提示");
}
这个是连接access数据库的一个例子,当时也是百度出来的,sql sever 数据库方法也可以用相同原理来实际。