PgSqlConnection Constructor()
Initializes a new instance of the
PgSqlConnection class.
The following example creates and opens a
PgSqlConnection.
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
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