Skip to content

Instantly share code, notes, and snippets.

@jwpage
Created April 18, 2012 08:17
Show Gist options
  • Save jwpage/2412006 to your computer and use it in GitHub Desktop.
Save jwpage/2412006 to your computer and use it in GitHub Desktop.
<?php
$dsn = ""; // As per PDO DSN syntax
$pdo = new PDO($dsn, null, null, array(
PDO::ATTR_PERSISTENT => true,
));
$conn = Doctrine_Manager::connection($pdo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment