PDO_CUBRID DSN - Connecting to CUBRID databases
Вернуться к: CUBRID (PDO)
PDO_CUBRID DSN
(Информация о версии неизвестна, возможно, только в SVN)
PDO_CUBRID DSN — Connecting to CUBRID databases
Описание
The PDO_CUBRID Data Source Name (DSN) is composed of the following elements, delimited by semicolons:
- DSN prefix
-
The DSN prefix is
cubrid:
. - host
-
The hostname on which the database server resides.
- port
-
The port on which the database server is running.
- dbname
-
The name of the database.
Примечания
Замечание:
When you estalish the connection to CUBRID, you should give username and password except DSN.
Примеры
Пример #1 PDO_CUBRID DSN examples
The following example shows a PDO_CUBRID DSN for connecting to a CUBRID database:
cubrid:host=localhost;port=33000;dbname=demodb
Вернуться к: CUBRID (PDO)