'count' 附近有语法错误。 是用C#编写ASP.net 出现的。
publicobjectExecuteScalar(stringsqlstr){Con.Open();SqlCommandCmd=newSqlCommand(sqlstr...
public object ExecuteScalar(string sqlstr)
{
Con.Open();
SqlCommand Cmd = new SqlCommand(sqlstr, Con);
Cmd.CommandType = CommandType.Text;
object Obj;
try
{
Obj = Cmd.ExecuteScalar();//Obj存放SQL语句返回结果。
}
catch (Exception ex)
{
throw new Exception(ex.Message); //错误在这行。提示‘count’附近有语法错误
}
finally {
Con.Close();
}
return Obj;
} 展开
{
Con.Open();
SqlCommand Cmd = new SqlCommand(sqlstr, Con);
Cmd.CommandType = CommandType.Text;
object Obj;
try
{
Obj = Cmd.ExecuteScalar();//Obj存放SQL语句返回结果。
}
catch (Exception ex)
{
throw new Exception(ex.Message); //错误在这行。提示‘count’附近有语法错误
}
finally {
Con.Close();
}
return Obj;
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询