请大神看一下哪里出错了?(用C#做网站)
string conStr = "server=.;user=sa;pwd=123456;database=CustomerManagement";//连接字符串
SqlConnection conText = new SqlConnection(conStr);//创建Connection对象
try
{
conText.Open();//打开数据库
string sql = "select * from manager";//创建统计语句
SqlCommand comText = new SqlCommand(sql, conText);//创建Command对象
SqlDataReader dr;//创建DataReader对象
dr=comText.ExecuteReader();//执行查询
if (dr.HasRows)//判断数据表中是否含有数据
{
Console.WriteLine("manager数据表中含有数据");
}
else
{
Console.WriteLine("manager数据表中没有数据");
}
}
catch (Exception ex)//创建检查Exception对象
{
Console.WriteLine(ex.Message.ToString());//输出错误信息
}
finally
{
conText.Close();//关闭连接
}
没看懂啊老哥,我老是报错
错误 2 “System.Data.SqlClient.SqlConnection”不包含“CommandText”的定义,并且找不到可接受类型为“System.Data.SqlClient.SqlConnection”的第一个参数的扩展方法“CommandText”(是否缺少 using 指令或程序集引用?) E:\VS_ASP.NET\xuanke\login.aspx.cs 31 13 xuanke
SqlConnection cmd = new SqlConnection();//这句改成
SqlCommand cmd= new SqlCommand();//程序员要有耐心要细心,很多时候卡了很久的问题,到最后发现只是一个容易忽略的小问题
2023-08-27 广告