首先要引入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();
}
}
}
}
}
可能你在安装时没有选择安装Express版本,不一定要在控制台程序中操作啊,可以在web中,来操作啊
图太小,即使放大也看不清楚