Connect to remote PostgreSql database using Powershell

后端 未结 5 460
说谎
说谎 2020-12-11 06:13

I\'m trying to connect to a remote PostgreSql database using powershell. This is my first time using powershell so I\'m sorry if this is a noob question. This is my Code:<

5条回答
  •  一向
    一向 (楼主)
    2020-12-11 06:55

    You actually have a typo in your connection string after Driver declaration. There is a double colon instead of a semicolon :)

    Wrong:

    {PostgreSQL UNICODE} : Server
    

    Correct:

    {PostgreSQL UNICODE} ; Server
    

提交回复
热议问题