1

ASP.NET スクリプトで VB を使用して、OledbConnection オブジェクトを使用して Informix データベースに接続しようとしています。私のコードは次のようになります。

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

他のどこを見ても、問題はほとんどの場合クエリで発生しますが、これは明らかに私には当てはまりません。誰か助けてください

4

1 に答える 1