我正在尝试使用 OledbConnection 对象连接到 Informix 数据库,在 ASP.NET 脚本中使用 VB 这就是我的代码的样子;
Dim oledbConnection = New OleDbConnection("Provider=ifxoledbc;DSN=DWH;")
qry = "select location from dim_location"
Try
oledbConnection.Open() '<-- interpreter bails here
'otherStuff
oledbConnection.Close()
Catch ex As Exception
Return ex.Message()
End Try
我在其他地方看到的问题几乎总是出现在查询中,但这显然不是我的情况,有人可以帮忙吗