AFAIK ado.net数据集和数据集似乎不支持sql语句中的连接。
是否可以仅使用此ado / vb代码中显示的信息检索此ado记录集的ado.net等价物: 我这样问这个问题,因为我试图在很大程度上自动化转换 ado to ado.net
Dim myconn As New ADODB.Connection
myconn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.3.51;Data Source=c:\TestDB1.mdb;Jet OLEDB:System Database=c:\TestDB1.mdw;User ID=TestDB;Password=123456;"
myconn.Open()
Dim myrec As New ADODB.Recordset
Dim str1 As String = "select TableA.field0, tableB.field0 from TableA inner join TableB on TableA.field1 = TableB.field1 where tableA.field3 > 0 order by tableA.field4"
myrec.Open(str1, myconn)