VB.NET Winform程序,关于连接SQL Server 2008数据库的问题!

2024-11-29 05:39:13
推荐回答(3个)
回答1:

SqlDataAdapter sda = new SqlDataAdapter(strSql, SQLCnn);
ds = new DataSet();
sda.Fill(ds, strTable);

strSql是你的SQL语句,直接填充数据集即可。

回答2:

sqlcommand执行你的sql语句就可以了,因为你说已经连上数据库了..

回答3:

创建与数据库的联接
Dim objCn As New Connection
With objCn
.Provider = "SQLOLEDB"
.ConnectionString = "User ID=sa;PWD=123;Data Source=(local);" & _
"Initial Catalog=学籍管理"
.Open
End With
就是这段代码