c#控制台应用程序连接数据库问题
3个回答
展开全部
首先要引入system.data这个dll
然后using system.data.sqlclient才行
不然你看你的代码中sqlconnection是不识别的
using System;
using System.Data.SqlClient;
namespace sql
{
class SqlOpreation
{
public void ConnectSQL()
{
// 使用using 就不用显式的关闭con了
using (SqlConnection con = new SqlConnection())
{
con.ConnectionString = "string";
string sqlQuery = "select * from table";
SqlCommand cmd = new SqlCommand(sqlQuery, con);
//是ExecuteReader
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
//do sth
}
if (reader != null)
{
reader.Close();
}
}
}
}
}
然后using system.data.sqlclient才行
不然你看你的代码中sqlconnection是不识别的
using System;
using System.Data.SqlClient;
namespace sql
{
class SqlOpreation
{
public void ConnectSQL()
{
// 使用using 就不用显式的关闭con了
using (SqlConnection con = new SqlConnection())
{
con.ConnectionString = "string";
string sqlQuery = "select * from table";
SqlCommand cmd = new SqlCommand(sqlQuery, con);
//是ExecuteReader
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
//do sth
}
if (reader != null)
{
reader.Close();
}
}
}
}
}
追问
怎么回事咋办啊
追答
你的 sql 连接字符串问题
先在网上查一下,编程得自己学进去才算是学会了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询