You can connect PostgreSQL databases using these ways:
1. Opening through FD interface. Select FD interface, click PostgreSQL, then fill all needed database parameters. Consult with your database administrator on how to choose correct parameters.
Example of configuring a database connection:
(required parameters are highlighted)
Vendor library | C:\Program Files (x86)\PostgreSQL\10\bin\libpq.dll |
Server | 200.200.190.222 |
Port | 5432 |
Database | customers |
Charset | UTF8 |
Application name | Exportizer Enterprise 8 |
User name | dexter |
Password | ******** |
SQL command separator | ; |
2. Opening through ODBC DSN (interface: ADO or BDE). Select ODBC data source option and then select the ODBC DSN from the drop-down list. But first, you should create an ODBC DSN of the corresponding type using Windows administrative tools, and point it to the database.
3. Opening through connection string (interface: ADO). Select Connection string option and write a connection string. This way is the most flexible one because it allows to specify many additional parameters in the connection string and override standard Exportizer connection behavior. But it is recommended basically for advanced users. Here are basic connection strings (more examples and details can be found in the Internet):
Provider=PostgreSQL OLE DB Provider;Data Source=myServerAddress;location=myDataBase;User ID=myUsername;password=myPassword; (PostgreSQL OLE DB Provider must be installed)
Driver={PostgreSQL};Server=IP address;Port=5432;Database=myDataBase;Uid=myUsername;Pwd=myPassword; (PostgreSQL ODBC Driver must be installed)
See also