Connecting with PostgreSQL 7 or Higher
In Scriptcase, we have the following drivers available for connections with PostgreSQL: PostgreSQL PDO, PostgreSQL 7 or Higher, PostgreSQL 6.4 or Higher and PostgreSQL 6.3 or Lower. If you are using your own pre-configured environment, PostgreSQL extensions must be manually enabled in PHP.
Prerequisites
If you are using a manual installation on Linux, you’ll need to install the PostgreSQL php extension. Check below how to do it.
1 - Access your Linux terminal and type this line below according to your OS to install PostgreSQL PDO driver.
Ubuntu | CentOS |
---|---|
sudo apt-get install php8.1-pgsql |
sudo yum install php-pgsql |
2 - Check if the PostgreSQL driver is enabled in your Scriptcase diagnosis. See below on how to locate your diagnosis and check if the driver is enabled.
- Accessing the top menu Help > Diagnosis, you can easily find it through the interface.
- Or, by accessing your Scriptcase installation path:
127.0.0.1/scriptcase/diagnosis.php
or domain.com/scriptcase/diagnosis.php
Creating a Connection in Scriptcase
See below how to create a connection in your Scriptcase project using the PostgreSQL database.
1 - Access any project from your Scriptcase.
2 - Click on the New Connection icon to create a connection.
or access the Database > New Connection menu tab.
After that, a new page will appear with all database connections.
3 - Select the Postgres connection.
Connection
Enter the parameters for connecting to your PostgreSQL database as follows:
-
Connection Name: Define the name of your new connection. By default, Scriptcase adds the prefix conn along with the database name.
-
DBMS Driver: Select the PostgreSQL Driver used to connect. In this example, we use the PostgreSQL 7 or Higher Driver.
- Server/Host (Name or IP): Enter the IP or domain of the server where the database is installed.
- E.g.
serverdomain.com
or192.168.254.170
- E.g.
-
Port: Inform the number port for your database server.
- Schema: Inform the Scheme of specific tables created for the use of the informed user.
- This item is optional if you do not have a schema configured in your database.
-
Username: Inform the user to authenticate the connection to your PostgreSQL database.
-
Password: Enter the password to complete the authentication process.
- Database Name: Type your database name to connect with him. Or, if you want to choose one different database, click on the button List Database to show all databases availabes for your user.
- Create Database: Clicking on this button, you will create a new PostgreSQL database for use.
- Test Connection: Click on this button to get a response from the Scriptcase request to find out if the parameters entered are correct.
Security
Use SSL
Allows you to define whether the connection will use SSL. Note that the option is disabled by default.
sslmode
sslmode | protection | MITM protection | Statement |
---|---|---|---|
disable | No | No | I don’t care about security, and I don’t want to pay the overhead of encryption. |
allow | Maybe | No | I don’t care about security, but I will pay the overhead of encryption if the server insists on it. |
prefer | Maybe | No | I don’t care about encryption, but I wish to pay the overhead of encryption if the server supports it. |
require | Yes | No | I want my data to be encrypted, and I accept the overhead. |
verify-ca | Yes | Depends on CA policy | I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server that I trust. |
verify-full | Yes | Yes | I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server I trust, and that it’s the one I specify. |
sslrootcert (SSL Root Certificate):
This parameter refers to the SSL/TLS root certificate used to verify the authenticity of the certificate presented by the server during secure communication. Usage: The value of this parameter must be the full path to the file containing the root certificate.
sslkey (SSL Private Key):
This parameter represents the private key associated with the SSL/TLS certificate used by the server for authentication. Usage: The full path to the file containing the private key must be specified.
sslcert (SSL Certificate):
The sslcert parameter refers to the server’s SSL/TLS certificate, which is presented during the security negotiation process for authentication. Usage: The full path to the file containing the server’s SSL/TLS certificate must be provided.
Filter
Accessing this tab, you can configure which Database items will be displayed on the connection, depending or not on the owner.
Show
It allows the PostgreSQL connection to see tables, views, system tables and procedures depending on the items selected by the user. By default, the items Tables and Views are already selected by Scriptcase.
- Tables: By selecting this option, the tables in your database will be displayed.
- By default, Scriptcase enables this option.
- By default, Scriptcase enables this option.
- Views: By selecting this option, the views of your database will be displayed.
- By default, Scriptcase enables this option.
- By default, Scriptcase enables this option.
-
System Tables: By selecting this option, the system tables of your database will be displayed.
- Procedures: By selecting this option, the procedures of your database will be displayed.
Searches
Allows you to define which tables and owners are displayed.
- Tables: You can define in this option which tables will be displayed. The configuration can contain a
PREFIX%
or name of the tables to display.- By default, Scriptcase leaves this option empty.
- E.g.
- Owner: Inform the user who sees the tables entered for display.
- The user must be in capital letters as in the example above.
- The user must be in capital letters as in the example above.
- Show: Choose whether tables for the informed owner are displayed.
NOTE: By using table filtering, you eliminate unnecessary tables for your project and improves the performance of your database connection.
Advanced
In this tab, you have access to specific settings for the connection. The changes made in this session impact the data display and application performance.
-
client_encoding: Select the encoding used in your database. In the example above, we use the client_encoding UTF-8.
- Decimal Separator: Select the type of separator for decimal records, between comma and period.
- By default, the period
.
is selected as a separator.
- By default, the period
- Persistent Connection: Define whether the connections will be closed after the execution of your scripts in Scriptcase applications.
- By default, Scriptcase disables this option.
- By default, Scriptcase disables this option.
- Use the schema before table name: Define whether the database schema is displayed before the table names.
-
By default, Scriptcase enables this option.
-
E.g.
-
Doubts or Connection Problems? Contact our Support Team in case of connection problems or questions regarding this database.