首页  >  文章  >  数据库  >  如何判断ACCESS数据表中的某条记录是否存在

如何判断ACCESS数据表中的某条记录是否存在

WBOY
WBOY原创
2016-06-07 15:42:452431浏览

判断 方法为: OleDbConnectioncon=newOleDbConnection(连接字符串); stringname=test; con.Open(); OleDbCommandcmd=newOleDbCommand(selectcount(*)fromstudentDetailswheresname='name',con); intcount=Convert.ToInt32(cmd.ExecuteScalar()); con.Close(


判断方法为:

OleDbConnection con=new OleDbConnection("连接字符串");
string name="test";
con.Open();
OleDbCommand cmd=new OleDbCommand("select count(*) from studentDetails where sname='"+name+"'",con);

int count=Convert.ToInt32(cmd.ExecuteScalar());
con.Close();
if (count>0)
{
  //说明记录存在..
}
else
{
  //说明记录存在..
}

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn