(No version information available, might be only in CVS)
PDO_MYSQL DSN — Connecting to MySQL databases
The PDO_MYSQL Data Source Name (DSN) is composed of the following elements:
The DSN prefix is mysql:
.
The hostname on which the database server resides.
The port number where the database server is listening.
The name of the database.
The MySQL Unix socket (shouldn't be used with host or port).
Example #1 PDO_MYSQL DSN examples
The following example shows a PDO_MYSQL DSN for connecting to MySQL databases:
mysql:host=localhost;dbname=testdb
More complete examples:
mysql:host=localhost;port=3307;dbname=testdb mysql:unix_socket=/tmp/mysql.sock;dbname=testdb