Skip to content

Instantly share code, notes, and snippets.

@mariuz
Created May 23, 2011 17:39
Show Gist options
  • Select an option

  • Save mariuz/987126 to your computer and use it in GitHub Desktop.

Select an option

Save mariuz/987126 to your computer and use it in GitHub Desktop.
pdo connection example for firebird driver http://www.php.net/manual/en/ref.pdo-firebird.connection.php
<?php
$str_conn="firebird:host=localhost;dbname=/var/lib/firebird/2.5/data/employee.fdb;charset=UTF8";
$dbh = new PDO($str_conn, "sysdba", "masterkey");
?>
@guilhermedotcamargo
Copy link

Cool, thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment