library php-dsn-factory
DSN Factory for PDO
romainbessugesmeusy/php-dsn-factory
DSN Factory for PDO
- Monday, March 4, 2013
- by romainbessuges
- Repository
- 1 Watchers
- 0 Stars
- 1,594 Installations
- PHP
- 1 Dependents
- 0 Suggesters
- 1 Forks
- 0 Open issues
- 1 Versions
- 23 % Grown
DSN Factory
Tired of going on http://php.net because you can't remember how's constructed the DSN you need ?, (*1)
$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",
]);