connector.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php namespace System\DB;
  2. class Connector {
  3. /**
  4. * The PDO connection options.
  5. *
  6. * @var array
  7. */
  8. public static $options = array(
  9. \PDO::ATTR_CASE => \PDO::CASE_LOWER,
  10. \PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
  11. \PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
  12. \PDO::ATTR_STRINGIFY_FETCHES => false,
  13. );
  14. /**
  15. * Establish a PDO database connection.
  16. *
  17. * @param object $config
  18. * @return PDO
  19. */
  20. public static function connect($config)
  21. {
  22. // -----------------------------------------------------
  23. // Connect to SQLite.
  24. // -----------------------------------------------------
  25. if ($config->driver == 'sqlite')
  26. {
  27. // -----------------------------------------------------
  28. // Check the application/db directory first.
  29. // -----------------------------------------------------
  30. if (file_exists($path = APP_PATH.'db/'.$config->database.'.sqlite'))
  31. {
  32. return new \PDO('sqlite:'.$path, null, null, static::$options);
  33. }
  34. // -----------------------------------------------------
  35. // Is the database name the full path?
  36. // -----------------------------------------------------
  37. elseif (file_exists($config->database))
  38. {
  39. return new \PDO('sqlite:'.$config->database, null, null, static::$options);
  40. }
  41. }
  42. // -----------------------------------------------------
  43. // Connect to MySQL or Postgres.
  44. // -----------------------------------------------------
  45. elseif ($config->driver == 'mysql' or $config->driver == 'pgsql')
  46. {
  47. $connection = new \PDO($config->driver.':host='.$config->host.';dbname='.$config->database, $config->username, $config->password, static::$options);
  48. if (isset($config->charset))
  49. {
  50. $connection->prepare("SET NAMES '".$config->charset."'")->execute();
  51. }
  52. return $connection;
  53. }
  54. throw new \Exception('Database driver '.$config->driver.' is not supported.');
  55. }
  56. }