'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
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2