dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlConnection Class / PgSqlConnection Constructor / PgSqlConnection Constructor()
Example

PgSqlConnection Constructor()
Initializes a new instance of the PgSqlConnection class.
Syntax
'Declaration
 
Public Function New()
 
Remarks
When a new instance of PgSqlConnection is created, the read/write properties are set to the following initial values unless they are specifically set using their associated keywords in the ConnectionString property.
Properties Initial Value
ConnectionString empty string ("")
ConnectionTimeout 15
Password empty string ("")
UserId empty string ("")
Example
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
Requirements

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

See Also