Properties | Initial Value |
---|---|
ConnectionString | empty string ("") |
ConnectionTimeout | 15 |
Password | empty string ("") |
UserId | empty string ("") |
public void CreatePgSqlConnection() { PgSqlConnection pgConnection = new PgSqlConnection(); pgConnection.ConnectionString = "host=server;database=test;user id=postgres;"; pgConnection.Open(); //Do something pgConnection.Close(); }
Public Sub CreatePgSqlConnection() Dim pgConnection As New PgSqlConnection() pgConnection.ConnectionString = _ "host=server;database=test;user id=postgres;" pgConnection.Open() 'Do something pgConnection.Close() End Sub