sql >> Database >  >> RDS >> PostgreSQL

Maak verbinding met een externe PostgreSql-database met Powershell

Raadpleeg:https://odbc.postgresql.org/
Download:https://www.postgresql.org/ftp/odbc/versions/msi/

Gegevensbronnen (ODBC) op Windows:Start → Zoeken → odbc → Gebruikers-DSN → Toevoegen/configureren

Voorbeeld :

$MyServer = "<ip>"
$MyPort  = "5432"
$MyDB = "<database>"
$MyUid = "<user>"
$MyPass = "<pass>"

$DBConnectionString = "Driver={PostgreSQL UNICODE(x64)};Server=$MyServer;Port=$MyPort;Database=$MyDB;Uid=$MyUid;Pwd=$MyPass;"
$DBConn = New-Object System.Data.Odbc.OdbcConnection;
$DBConn.ConnectionString = $DBConnectionString;
$DBConn.Open();
$DBCmd = $DBConn.CreateCommand();
$DBCmd.CommandText = "SELECT * FROM tb_module;";
$DBCmd.ExecuteReader();
$DBConn.Close();


  1. Laravel 5 PDOException kon stuurprogramma niet vinden

  2. INSERT a SELECT GROUP BY :meer doelkolommen dan expressies fout

  3. Foutcode 1292 - Afgekapte onjuiste DUBBELE waarde - Mysql

  4. Parametersnuiven, insluiten en de RECOMPILE-opties