nibblebot
nibblebot

Reputation: 139

PDO Connection string for SQL Server 2005

What should my PDO constructor/DSN/connection string look like to connect to a SQL Server 2005 database?

$dbh = new PDO('??');

Upvotes: 0

Views: 1217

Answers (1)

Lukasz Lysik
Lukasz Lysik

Reputation: 10620

Look at the Connection Strings site. It always helps me, or this post.

Upvotes: 1

Related Questions