The PDO data source enables interaction with various database servers. With this data source, app developers can access databases, execute queries and integrate data into their apps.
You can establish the connection using the connection parameters, such as DSN, and login information (user and password). You can then use SQL queries to retrieve, insert, update, or delete data.
Parameters
|
Type |
Name |
Description |
|---|---|---|
|
TEXT |
dsn |
Specifies the information required to connect to the database, e.g.: |
|
TEXT |
user |
Specifies the user to establish the connection. |
|
PASSWORD |
password |
Specifies the password of the specified user. |