3
votes
2answers
927 views
Why is PHP PDO DSN a different format for MySQL versus PostgreSQL?
When I connect to a MySQL database using PDO, the way I need to connect is:
$pdoConnection = new PDO("mysql:host=hostname;dbname=databasename",user,password);
But, for PostgreSQL, the DSN i …
