dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlConnection Class / Port Property
Example

In This Topic
    Port Property (PgSqlConnection)
    In This Topic
    Gets or sets port of PostgreSQL database to which to connect.
    Syntax
    'Declaration
     
    Public Property Port As Integer
    public int Port {get; set;}

    Property Value

    The port of PostgreSQL database to which to connect. The default value is 5432.
    Example
    The following example creates a PgSqlConnection and displays the port.
    public void CreatePgSqlConnection()
    {
      string myConnString = "User=postgres; Host=localhost; Port=5432; Database=testdb";
      PgSqlConnection myConnection = new PgSqlConnection(myConnString);
      myConnection.Open();
      MessageBox.Show("Port: " + myConnection.Port.ToString());
      myConnection.Close();
    }
    Public Sub CreatePgSqlConnection()
      Dim myConnString As String = _
        "User=postgres; Host=localhost; Port=5432; Database=testdb"
      Dim myConnection As New PgSqlConnection(myConnString)
      myConnection.Open()
      MessageBox.Show("Port: " + myConnection.Port.ToString())
      myConnection.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