tags:

views:

67

answers:

1

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

$dbh = new PDO('??');
+1  A: 

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

Lukasz Lysik