'Declaration Public Function New( _ ByVal connectionString As String _ )
public PgSqlConnection( string connectionString )
Parameters
- connectionString
- The connection used to open the PostgreSQL server database.
'Declaration Public Function New( _ ByVal connectionString As String _ )
public PgSqlConnection( string connectionString )
| Properties | Initial Value |
|---|---|
| ConnectionString | empty string ("") |
| ConnectionTimeout | 15 |
| Database | empty string ("") |
| Host | empty string ("") |
| Password | empty string ("") |
| Port | 5432 |
| UserId | empty string ("") |
You can change the value for these properties only by using the ConnectionString property.
public void CreatePgSqlConnection() { string myConnString = "host=server;database=test;user id=postgres"; PgSqlConnection myConnection = new PgSqlConnection(myConnString); myConnection.Open(); }
Public Sub CreatePgSqlConnection() Dim myConnString As String = "host=server;database=test;user id=postgres" Dim myConnection As New PgSqlConnection(myConnString) myConnection.Open() End Sub