我想从 Access 数据库中读取数据以检查密码是否正确。我使用这段代码:
var check=false;
OleDbCommand c = new OleDbCommand();
c.Connection = co //the connection to the Database;
c.CommandText = "select * FROM User Where user_name='"+usee+"'";
OleDbDataReader re = c.ExecuteReader();
while (re.Read())
{
if (re.ToString() == pasy)
{
check = true;
}
}
它给了我一个“FROM 子句中的语法错误”。当代码执行时。