// 已修正,有错的地方下面都已给出:
string str = @"server=LENOVO007-PC\\SQLEXPRESS;database=脚本记录;user id=sa;pwd=sa";
SqlConnection con = new SqlConnection(str);
con.Open();
//进行查询
string sql = "SELECT * FROM 脚本记录"; // select你拼错了
SqlDataAdapter data = new SqlDataAdapter(sql,con);
DataSet ds = new DataSet();
data.Fill(ds);
con.Close() // 关闭连接
dataGridView1.DataSource = ds.Tables[0];
可以调用griview控件进行数据绑定
你这样改试试
data.Fill(ds,"脚本记录");
datagridview1.DataSource = ds.Tables["脚本记录"];
或者
data.Fill(ds);
datagridview1.DataSource = ds.Tables[0];
1. ado.net提供了丰富的数据库操作,这些操作可以分为三个步骤:
第一,使用SqlConnection对象连接数据库;
第二,建立SqlCommand对象,负责SQL语句的执行和存储过程的调用;
第三,对SQL或存储过程执行后返回的“结果”进行操作。
2.连接字符串的写法string connectString = "Data Source=.;Initial Catalog=Student;Integrated Security=True";
3.返回数据库连接对象,参数字符串。实例化“连接对象”,并打开连接
SqlConnection sqlCnt = new SqlConnection(connectString);
sqlCnt.Open();
使用完成后,需要关闭“连接对象”
sqlCnt.Close();
4.实例化一个SqlCommand对象
SqlCommand command = new SqlCommand();
command.Connection = sqlCnt; // 绑定SqlConnection对象
5.执行SQLSqlCommand cmd = conn.CreateCommand(); //创建SqlCommand对象
cmd.CommandType = CommandType.Text;
cmd.CommandText = "select * from products = @ID"; //sql语句
cmd.Parameters.Add("@ID", SqlDbType.Int);
cmd.Parameters["@ID"].Value = 1; //给参数sql语句的参数赋值
6.调用存储过程SqlCommand cmd = conn.CreateCommand();
cmd.CommandType = System.Data.CommandType.StoredProcedure;
cmd.CommandText = "存储过程名";
7.SqlCommand cmd = conn.CreateCommand();
cmd.CommandType = System.Data.CommandType.TableDirect;
cmd.CommandText = "表名"
用listview吧