Advertisement
Guest User

Untitled

a guest
Apr 4th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. $dsn = '"DRIVER={DBISAM 4 ODBC Driver}; ConnectionType=Local; CatalogName=C:/direccion donde estan las tablas;';
  3. $user = '';
  4. $password = '';
  5.  
  6. try {
  7. $dbh = new PDO($dsn, $user, $password);
  8. echo "conexion establecidad";
  9. } catch (PDOException $e) {
  10. echo 'Connection failed: ' . $e->getMessage();
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement