romainbessugesmeusy / php-dsn-factory
DSN Factory for PDO
Installs: 33 243
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 1
This package is not auto-updated.
Last update: 2024-11-17 03:16:25 UTC
README
Tired of going on http://php.net because you can't remember how's constructed the DSN you need ?
$dsn = new Dsn(Dsn::MYSQL, [
"host" => "127.0.0.1",
"port" => "3306",
"dbname" => "my_database",
]);
$dsn = new Dsn(Dsn::SQL_SERVER, [
"host" => "127.0.0.1",
"port" => "3306",
"dbname" => "my_database",
]);