尝试连接到 Informix 数据库时,我不断收到错误消息。
我正在使用 VS2008、.NET 4 框架、IBM Informix Connect 3.7 64bit
编码
Dim connectionstring As String = "myconnectionstring"
Dim conn As New IfxConnection
conn.ConnectionString = connectionstring
Try
conn.Open()
MsgBox("Made connection!")
Catch ex As Exception
MsgBox(ex.Message)
End Try
我知道连接字符串可以工作,因为这个确切的代码可以在我的旧 32 位机器上工作。
错误
Unable to load DLL IfxDotNetIntrinsic Module.dll the specific module could not be found
我已经检查了 Setnet 32 并且它是正确的,我已经卸载并重新安装了驱动程序。我只是不知道下一步该怎么做——你能帮忙吗?