vb.net コンソール アプリケーション (x64) で odbc コネクタ (x64) を使用して postgresql データベースに接続する際の問題、エラー、 http: //www.sumarlidason.com/tmp/120312/odbc_capture1.png
Dim ConnectionString = "Driver={PostgreSQL UNICODE};Server=myPGSrv;Port=5432;Database=dbDefault;Uid=postgres;Pwd=pw;"
'Dim ConnectionString = "ODBC;dsn=PostgreSQL35W"
conn = New OdbcConnection(ConnectionString)
'Open connection to an instance of the PostgreSQL database.
Try
conn.Open()
Catch Ex As Exception
MsgBox(Ex.Message)
End Try
Dim commonOdbcCommand = New OdbcCommand
commonOdbcCommand.Connection = conn
conn.Close()
また、コントロール パネルでデータベースを構成しました。ここを参照してください。 http://sumarlidason.com/tmp/120312/odbc_capture.png