VOOZH about

URL: https://www.cdata.com/kb/tech/postgresql-jdbc-squirrel-sql.rst

⇱ How to connect to PostgreSQL Data with Squirrel SQL client


How to connect to PostgreSQL Data with Squirrel SQL client

πŸ‘ Jerod Johnson
Jerod Johnson
Director, Technology Evangelism
Connect to PostgreSQL data and execute queries in the Squirrel SQL Client.

The CData JDBC Driver for PostgreSQL enables you to execute queries to PostgreSQL data in tools like Squirrel SQL Client. In this article, you will create a JDBC data source for PostgreSQL data and execute queries.

Add the JDBC Driver for PostgreSQL

Follow the steps below to add the driver JAR.

  1. In Squirrel SQL, click Windows -> View Drivers.
  2. Click the plus icon to open the Add Driver wizard.
  3. In the Name box, enter a user-friendly name for the driver; for example, CData JDBC Driver for PostgreSQL.
  4. In the Example URL box, enter jdbc:postgresql:
  5. In the Extra Class Path tab, click Add.
  6. In the file explorer dialog that opens, select the JAR file for the driver, located in the lib subfolder of the installation directory.
  7. Click List Drivers to populate the Class Name menu with the class name for the driver, cdata.jdbc.postgresql.PostgreSQLDriver.
πŸ‘ The definition for the JDBC data source. (Salesforce is shown.)

Define Connection Properties

Follow the steps below to save connection properties in the driver alias.

  1. Click Windows -> View Aliases.
  2. In the pane that lists the aliases, click the plus icon.
  3. In the Add Alias wizard that opens, the following fields are required for the JDBC driver:

    • Name: Enter a name for the alias; for example, CData PostgreSQL Source.
    • Driver: Select the CData JDBC Driver for PostgreSQL.
    • URL: Enter jdbc:postgresql:
    πŸ‘ The alias definition, containing the connection parameters. (Salesforce is shown.)
  4. If you want to define any additional properties, click Properties.
  5. In the Driver properties tab of the dialog that appears, select the Use driver properties checkbox.
  6. In the Specify column, select the checkboxes for the required connection properties.

    To connect to PostgreSQL, set the Server, Port (the default port is 5432), and Database connection properties and set the User and Password you wish to use to authenticate to the server. If the Database property is not specified, the data provider connects to the user's default database.

    SSH Connectivity for PostgreSQL

    You can use SSH (Secure Shell) to authenticate with PostgreSQL, whether the instance is hosted on-premises or in supported cloud environments. SSH authentication ensures that access is encrypted (as compared to direct network connections).

    SSH Connections to PostgreSQL in Password Auth Mode

    To connect to PostgreSQL via SSH in Password Auth mode, set the following connection properties:

    • User: PostgreSQL User name
    • Password: PostgreSQL Password
    • Database: PostgreSQL database name
    • Server: PostgreSQL Server name
    • Port: PostgreSQL port number like 3306
    • UserSSH: "true"
    • SSHAuthMode: "Password"
    • SSHPort: SSH Port number
    • SSHServer: SSH Server name
    • SSHUser: SSH User name
    • SSHPassword: SSH Password

    SSH Connections to PostgreSQL in Public Key Auth Mode

    To connect to PostgreSQL via SSH in Password Auth mode, set the following connection properties:

    • User: PostgreSQL User name
    • Password: PostgreSQL Password
    • Database: PostgreSQL database name
    • Server: PostgreSQL Server name
    • Port: PostgreSQL port number like 3306
    • UserSSH: "true"
    • SSHAuthMode: "Public_Key"
    • SSHPort: SSH Port number
    • SSHServer: SSH Server name
    • SSHUser: SSH User name
    • SSHClientCret: the path for the public key certificate file

    Below is a typical connection string:

    jdbc:postgresql:User=postgres;Password=admin;Database=postgres;Server=127.0.0.1;Port=5432;
    
    πŸ‘ Connection properties automatically detected by Squirrel SQL. (Salesforce is shown.)
  7. In the dialog that appears after you click OK, click connect to test the connection.

Discover Schemas and Query PostgreSQL Data

After the metadata has loaded, a new tab for the PostgreSQL data source is displayed. On the Objects subtab, you can discover schema information, such as the available tables and views.

πŸ‘ Column metadata for a table. (Salesforce is shown.)

To view table data, select the table on the Objects tab. The table data is then loaded in a grid on the Content tab.

πŸ‘ Tables can be edited on the Content tab. (Salesforce is shown.)

To execute an SQL query, enter the query on the SQL tab and then click Run SQL (the runner icon). For example:

SELECT ShipName, ShipCity FROM Orders
πŸ‘ A query and the results. (Salesforce is shown.)

Ready to get started?

Download a free trial of the PostgreSQL Driver to get started:

 Download Now

Learn more:

πŸ‘ PostgreSQL Icon
PostgreSQL JDBC Driver

Rapidly create and deploy powerful Java applications that integrate with PostgreSQL-compatible database engines.