db.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?php namespace System;
  2. class DB {
  3. /**
  4. * The active database connections.
  5. *
  6. * @var array
  7. */
  8. private static $connections = array();
  9. /**
  10. * Get a database connection.
  11. *
  12. * @param string $connection
  13. * @return PDO
  14. */
  15. public static function connection($connection = null)
  16. {
  17. // ---------------------------------------------------
  18. // If no connection was given, use the default.
  19. // ---------------------------------------------------
  20. if (is_null($connection))
  21. {
  22. $connection = Config::get('db.default');
  23. }
  24. // ---------------------------------------------------
  25. // If we have already established this connection,
  26. // simply return the existing connection.
  27. // ---------------------------------------------------
  28. if ( ! array_key_exists($connection, static::$connections))
  29. {
  30. // ---------------------------------------------------
  31. // Get the database configurations.
  32. // ---------------------------------------------------
  33. $config = Config::get('db.connections');
  34. // ---------------------------------------------------
  35. // Verify the connection has been defined.
  36. // ---------------------------------------------------
  37. if ( ! array_key_exists($connection, $config))
  38. {
  39. throw new \Exception("Database connection [$connection] is not defined.");
  40. }
  41. // ---------------------------------------------------
  42. // Establish the database connection.
  43. // ---------------------------------------------------
  44. static::$connections[$connection] = DB\Connector::connect((object) $config[$connection]);
  45. }
  46. return static::$connections[$connection];
  47. }
  48. /**
  49. * Execute a SQL query against the connection.
  50. *
  51. * @param string $sql
  52. * @param array $bindings
  53. * @param string $connection
  54. * @return mixed
  55. */
  56. public static function query($sql, $bindings = array(), $connection = null)
  57. {
  58. // ---------------------------------------------------
  59. // Create a new PDO statement from the SQL.
  60. // ---------------------------------------------------
  61. $query = static::connection($connection)->prepare($sql);
  62. // ---------------------------------------------------
  63. // Execute the query with the bindings.
  64. // ---------------------------------------------------
  65. $result = $query->execute($bindings);
  66. // ---------------------------------------------------
  67. // For SELECT statements, return the results in an
  68. // array of stdClasses.
  69. //
  70. // For UPDATE and DELETE statements, return the number
  71. // or rows affected by the query.
  72. //
  73. // For INSERT statements, return a boolean.
  74. // ---------------------------------------------------
  75. if (strpos(Str::upper($sql), 'SELECT') === 0)
  76. {
  77. return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass');
  78. }
  79. elseif (strpos(Str::upper($sql), 'UPDATE') === 0 or strpos(Str::upper($sql), 'DELETE') === 0)
  80. {
  81. return $query->rowCount();
  82. }
  83. else
  84. {
  85. return $result;
  86. }
  87. }
  88. /**
  89. * Begin a fluent query against a table.
  90. *
  91. * @param string $table
  92. * @param string $connection
  93. * @return Query
  94. */
  95. public static function table($table, $connection = null)
  96. {
  97. return new DB\Query($table, $connection);
  98. }
  99. }