0

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

4

1 に答える 1

0

正しい接続文字列:

Dim conn As New OdbcConnection("DSN=PostgreSQL35W")
于 2012-12-03T18:20:06.577 に答える