c#控制台应用程序连接数据库问题
发布网友
发布时间:2022-04-10 23:13
我来回答
共3个回答
热心网友
时间:2022-04-11 00:42
首先要引入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();
}
}
}
}
}追问怎么回事咋办啊
追答你的 sql 连接字符串问题
先在网上查一下,编程得自己学进去才算是学会了
热心网友
时间:2022-04-11 02:00
可能你在安装时没有选择安装Express版本,不一定要在控制台程序中操作啊,可以在web中,来操作啊
热心网友
时间:2022-04-11 03:35
图太小,即使放大也看不清楚