postgres.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php namespace Laravel\Database\Connectors; use PDO;
  2. class Postgres extends Connector {
  3. /**
  4. * The PDO connection options.
  5. *
  6. * @var array
  7. */
  8. protected $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 array $config
  18. * @return PDO
  19. */
  20. public function connect($config)
  21. {
  22. extract($config);
  23. $dsn = "pgsql:host={$host};dbname={$database}";
  24. // The developer has the freedom of specifying a port for the PostgresSQL
  25. // database or the default port (5432) will be used by PDO to create the
  26. // connection to the database for the developer.
  27. if (isset($config['port']))
  28. {
  29. $dsn .= ";port={$config['port']}";
  30. }
  31. $connection = new PDO($dsn, $username, $password, $this->options($config));
  32. // If a character set has been specified, we'll execute a query against
  33. // the database to set the correct character set. By default, this is
  34. // set to UTF-8 which should be fine for most scenarios.
  35. if (isset($config['charset']))
  36. {
  37. $connection->prepare("SET NAMES '{$config['charset']}'")->execute();
  38. }
  39. return $connection;
  40. }
  41. }