首頁  >  文章  >  資料庫  >  如何判断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