c#控制台应用程序连接数据库问题

2024-12-03 16:59:03
推荐回答(3个)
回答(1):

首先要引入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();
}
}
}
}
}

回答(2):

可能你在安装时没有选择安装Express版本,不一定要在控制台程序中操作啊,可以在web中,来操作啊

回答(3):

图太小,即使放大也看不清楚