db.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. Database connections are managed as singletons.
  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. if ( ! array_key_exists($connection, static::$connections))
  22. {
  23. $config = Config::get('db.connections');
  24. if ( ! array_key_exists($connection, $config))
  25. {
  26. throw new \Exception("Database connection [$connection] is not defined.");
  27. }
  28. static::$connections[$connection] = DB\Connector::connect((object) $config[$connection]);
  29. }
  30. return static::$connections[$connection];
  31. }
  32. /**
  33. * Execute a SQL query against the connection.
  34. *
  35. * The method returns the following based on query type:
  36. *
  37. * SELECT -> Array of stdClasses
  38. * UPDATE -> Number of rows affected.
  39. * DELETE -> Number of Rows affected.
  40. * ELSE -> Boolean true / false depending on success.
  41. *
  42. * @param string $sql
  43. * @param array $bindings
  44. * @param string $connection
  45. * @return mixed
  46. */
  47. public static function query($sql, $bindings = array(), $connection = null)
  48. {
  49. $query = static::connection($connection)->prepare($sql);
  50. $result = $query->execute($bindings);
  51. if (strpos(strtoupper($sql), 'SELECT') === 0)
  52. {
  53. return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass');
  54. }
  55. elseif (strpos(strtoupper($sql), 'UPDATE') === 0 or strpos(strtoupper($sql), 'DELETE') === 0)
  56. {
  57. return $query->rowCount();
  58. }
  59. else
  60. {
  61. return $result;
  62. }
  63. }
  64. /**
  65. * Begin a fluent query against a table.
  66. *
  67. * This method is simply a convenient shortcut into Query::table.
  68. *
  69. * @param string $table
  70. * @param string $connection
  71. * @return Query
  72. */
  73. public static function table($table, $connection = null)
  74. {
  75. return new DB\Query($table, $connection);
  76. }
  77. /**
  78. * Get the driver name for a database connection.
  79. *
  80. * @param string $connection
  81. * @return string
  82. */
  83. public static function driver($connection = null)
  84. {
  85. return static::connection($connection)->getAttribute(\PDO::ATTR_DRIVER_NAME);
  86. }
  87. /**
  88. * Get the table prefix for a database connection.
  89. *
  90. * @param string $connection
  91. * @return string
  92. */
  93. public static function prefix($connection = null)
  94. {
  95. $connections = Config::get('db.connections');
  96. if (is_null($connection))
  97. {
  98. $connection = Config::get('db.default');
  99. }
  100. return (array_key_exists('prefix', $connections[$connection])) ? $connections[$connection]['prefix'] : '';
  101. }
  102. }