c# access 数据库的连接、查询 为什么查询不到结果,int i = cmd.ExecuteNonQuery(); i一直为0,为什么
publicboolLoginCheck(stringuserId,stringpassword){OleDbConnectionconn=null;stringsqlT...
public bool LoginCheck(string userId,string password)
{
OleDbConnection conn=null;
string sqlText = "select * from user_table where userId='" + userId + "' and password='" +password + "'";
try
{
conn= GetConnection();
conn.Open();
Console.WriteLine(sqlText);
}
catch (Exception ex)
{
throw ex;
}
OleDbCommand cmd = new OleDbCommand(sqlText, conn);
//OleDbDataReader dr = cmd.ExecuteReader();
int i = cmd.ExecuteNonQuery();
Console.WriteLine("99"+i);
if (i==0)
{
return false;
}
conn.Close();
return true;
}
//接続db
public OleDbConnection GetConnection()
{
OleDbConnection conn = null;
//string connstr = "Provider=Microsoft.Jet.OLEDB.4.0;data source=" + Server.MapPath("user.mdb");
string connstr= @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\user.mdb ";
try
{
conn = new OleDbConnection(connstr);
}
catch (Exception ex)
{
throw ex;
}
return conn;
} 展开
{
OleDbConnection conn=null;
string sqlText = "select * from user_table where userId='" + userId + "' and password='" +password + "'";
try
{
conn= GetConnection();
conn.Open();
Console.WriteLine(sqlText);
}
catch (Exception ex)
{
throw ex;
}
OleDbCommand cmd = new OleDbCommand(sqlText, conn);
//OleDbDataReader dr = cmd.ExecuteReader();
int i = cmd.ExecuteNonQuery();
Console.WriteLine("99"+i);
if (i==0)
{
return false;
}
conn.Close();
return true;
}
//接続db
public OleDbConnection GetConnection()
{
OleDbConnection conn = null;
//string connstr = "Provider=Microsoft.Jet.OLEDB.4.0;data source=" + Server.MapPath("user.mdb");
string connstr= @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\user.mdb ";
try
{
conn = new OleDbConnection(connstr);
}
catch (Exception ex)
{
throw ex;
}
return conn;
} 展开
5个回答
展开全部
查询的应该使用ExecuteReader,会返回你所要查询的结果。
执行,如,删除,插入,更新 使用ExecuteNonQuery,若是执行成功就会返回正数。否则返回负数。
执行,如,删除,插入,更新 使用ExecuteNonQuery,若是执行成功就会返回正数。否则返回负数。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SqlCommand.ExecuteNonQuery 方法
对于 UPDATE、INSERT 和 DELETE 语句,返回值为该命令所影响的行数。对于所有其他类型的语句,返回值为 -1。如果发生回滚,返回值也为 -1。
一些函数的使用,建议你夺取参考MSDN。
对于 UPDATE、INSERT 和 DELETE 语句,返回值为该命令所影响的行数。对于所有其他类型的语句,返回值为 -1。如果发生回滚,返回值也为 -1。
一些函数的使用,建议你夺取参考MSDN。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查询不应该使用ExecuteNonQuery,应该使用 ExecuteReader
public bool LoginCheck(string userId, string password)
{
bool result = false;
OleDbConnection conn = null;
string sqlText = string.Format("select * from user_table where userId='{0}' and [password]='{1}'", userId, password);
try
{
conn = GetConnection();
conn.Open();
Console.WriteLine(sqlText);
OleDbCommand cmd = new OleDbCommand(sqlText, conn);
OleDbDataReader dr = cmd.ExecuteReader();
if (dr.HasRows)
{
result = true;
}
}
catch (Exception ex)
{
result = false;
throw ex;
}
finally
{
conn.Close();
}
return result;
}
public bool LoginCheck(string userId, string password)
{
bool result = false;
OleDbConnection conn = null;
string sqlText = string.Format("select * from user_table where userId='{0}' and [password]='{1}'", userId, password);
try
{
conn = GetConnection();
conn.Open();
Console.WriteLine(sqlText);
OleDbCommand cmd = new OleDbCommand(sqlText, conn);
OleDbDataReader dr = cmd.ExecuteReader();
if (dr.HasRows)
{
result = true;
}
}
catch (Exception ex)
{
result = false;
throw ex;
}
finally
{
conn.Close();
}
return result;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我也试过这样i是没有值的,可以换成dataset装填数据,然后用tables[0].raws.count来代替
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询