SqlDataAdapter sda = new SqlDataAdapter(strSql, SQLCnn);
ds = new DataSet();
sda.Fill(ds, strTable);
strSql是你的SQL语句,直接填充数据集即可。
sqlcommand执行你的sql语句就可以了,因为你说已经连上数据库了..
创建与数据库的联接
Dim objCn As New Connection
With objCn
.Provider = "SQLOLEDB"
.ConnectionString = "User ID=sa;PWD=123;Data Source=(local);" & _
"Initial Catalog=学籍管理"
.Open
End With
就是这段代码