db.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php namespace System;
  2. class DB {
  3. /**
  4. * The established 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. if (is_null($connection))
  18. {
  19. $connection = Config::get('db.default');
  20. }
  21. // ---------------------------------------------------
  22. // If we have already established this connection,
  23. // simply return the existing connection.
  24. //
  25. // Don't want to establish the same connection twice!
  26. // ---------------------------------------------------
  27. if ( ! array_key_exists($connection, static::$connections))
  28. {
  29. $config = Config::get('db.connections');
  30. if ( ! array_key_exists($connection, $config))
  31. {
  32. throw new \Exception("Database connection [$connection] is not defined.");
  33. }
  34. static::$connections[$connection] = DB\Connector::connect((object) $config[$connection]);
  35. }
  36. return static::$connections[$connection];
  37. }
  38. /**
  39. * Execute a SQL query against the connection.
  40. *
  41. * @param string $sql
  42. * @param array $bindings
  43. * @param string $connection
  44. * @return mixed
  45. */
  46. public static function query($sql, $bindings = array(), $connection = null)
  47. {
  48. $query = static::connection($connection)->prepare($sql);
  49. $result = $query->execute($bindings);
  50. // ---------------------------------------------------
  51. // For SELECT statements, the results will be returned
  52. // as an array of stdClasses.
  53. //
  54. // For UPDATE and DELETE statements, the number of
  55. // rows affected by the query will be returned.
  56. //
  57. // For all other statements, return a boolean.
  58. // ---------------------------------------------------
  59. if (strpos(strtoupper($sql), 'SELECT') === 0)
  60. {
  61. return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass');
  62. }
  63. elseif (strpos(strtoupper($sql), 'UPDATE') === 0 or strpos(strtoupper($sql), 'DELETE') === 0)
  64. {
  65. return $query->rowCount();
  66. }
  67. else
  68. {
  69. return $result;
  70. }
  71. }
  72. /**
  73. * Begin a fluent query against a table.
  74. *
  75. * This method is simply a convenient shortcut into Query::table.
  76. *
  77. * @param string $table
  78. * @param string $connection
  79. * @return Query
  80. */
  81. public static function table($table, $connection = null)
  82. {
  83. return new DB\Query($table, $connection);
  84. }
  85. /**
  86. * Get the driver name for a database connection.
  87. *
  88. * @param string $connection
  89. * @return string
  90. */
  91. public static function driver($connection = null)
  92. {
  93. return static::connection($connection)->getAttribute(\PDO::ATTR_DRIVER_NAME);
  94. }
  95. /**
  96. * Get the table prefix for a database connection.
  97. *
  98. * @param string $connection
  99. * @return string
  100. */
  101. public static function prefix($connection = null)
  102. {
  103. $connections = Config::get('db.connections');
  104. if (is_null($connection))
  105. {
  106. $connection = Config::get('db.default');
  107. }
  108. return (array_key_exists('prefix', $connections[$connection])) ? $connections[$connection]['prefix'] : '';
  109. }
  110. }