在vb.net中我试图打开连接字符串到Share Point,代码粘贴在cnt.Open
命令下面并且一直运行但没有显示错误,我在使用VBA之前使用了相同的语法并且它工作正常,
Dim cnt As ADODB.Connection
Dim rst As ADODB.Recordset
cnt.Open("Provider=Microsoft.ACE.OLEDB.12.0;WSS;IMEX=1;RetrieveIds=Yes;DATABASE=Location;LIST=LISTNAME; ")
答案 0 :(得分:0)
你忘了连接上的新功能。
Dim cnt As ADODB.Connection = New ADODB.Connection
Dim rst As ADODB.Recordset
cnt.Open("Provider=Microsoft.ACE.OLEDB.12.0;WSS;IMEX=1;RetrieveIds=Yes;DATABASE=Location;LIST=LISTNAME; ")