C#如何判断查询SQL数据库是否有此条记录?
3个回答
展开全部
SqlConnection sqlConn=new SqlConnection("你的链接字符串");
try{
sqlConn.Open();
}
catch{Messageboxs.Show("数据库连接失败");return;}
string sql="select 1 from tablename where 你的条件";
SqlCommand sqlCmd=new SqlCommand(sql,sqlConn);
Object o=sqlCmd.ExecuteNonQuery();
if(o==null)
{
Messageboxs.Show("不存在此记录")
}
else
{
Messageboxs.Show("存在此记录")
}
try{
sqlConn.Close();
}
catch{return;}
try{
sqlConn.Open();
}
catch{Messageboxs.Show("数据库连接失败");return;}
string sql="select 1 from tablename where 你的条件";
SqlCommand sqlCmd=new SqlCommand(sql,sqlConn);
Object o=sqlCmd.ExecuteNonQuery();
if(o==null)
{
Messageboxs.Show("不存在此记录")
}
else
{
Messageboxs.Show("存在此记录")
}
try{
sqlConn.Close();
}
catch{return;}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询