db.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php namespace System;
  2. class DB {
  3. /**
  4. * The established database connections.
  5. *
  6. * @var array
  7. */
  8. public static $connections = array();
  9. /**
  10. * Get a database connection. If no database name is specified, the default
  11. * connection will be returned as defined in the db configuration file.
  12. *
  13. * Note: Database connections are managed as singletons.
  14. *
  15. * @param string $connection
  16. * @return PDO
  17. */
  18. public static function connection($connection = null)
  19. {
  20. if (is_null($connection))
  21. {
  22. $connection = Config::get('db.default');
  23. }
  24. if ( ! array_key_exists($connection, static::$connections))
  25. {
  26. static::$connections[$connection] = DB\Connector::connect($connection);
  27. }
  28. return static::$connections[$connection];
  29. }
  30. /**
  31. * Execute a SQL query against the connection.
  32. *
  33. * The method returns the following based on query type:
  34. *
  35. * SELECT -> Array of stdClasses
  36. * UPDATE -> Number of rows affected.
  37. * DELETE -> Number of Rows affected.
  38. * ELSE -> Boolean true / false depending on success.
  39. *
  40. * @param string $sql
  41. * @param array $bindings
  42. * @param string $connection
  43. * @return mixed
  44. */
  45. public static function query($sql, $bindings = array(), $connection = null)
  46. {
  47. $query = static::connection($connection)->prepare($sql);
  48. $result = $query->execute($bindings);
  49. if (strpos(strtoupper($sql), 'SELECT') === 0)
  50. {
  51. return $query->fetchAll(\PDO::FETCH_CLASS, 'stdClass');
  52. }
  53. elseif (strpos(strtoupper($sql), 'UPDATE') === 0 or strpos(strtoupper($sql), 'DELETE') === 0)
  54. {
  55. return $query->rowCount();
  56. }
  57. else
  58. {
  59. return $result;
  60. }
  61. }
  62. /**
  63. * Begin a fluent query against a table.
  64. *
  65. * This method is simply a convenient shortcut into Query::table.
  66. *
  67. * @param string $table
  68. * @param string $connection
  69. * @return Query
  70. */
  71. public static function table($table, $connection = null)
  72. {
  73. return new DB\Query($table, $connection);
  74. }
  75. /**
  76. * Get the driver name for a database connection.
  77. *
  78. * @param string $connection
  79. * @return string
  80. */
  81. public static function driver($connection = null)
  82. {
  83. return static::connection($connection)->getAttribute(\PDO::ATTR_DRIVER_NAME);
  84. }
  85. /**
  86. * Get the table prefix for a database connection.
  87. *
  88. * @param string $connection
  89. * @return string
  90. */
  91. public static function prefix($connection = null)
  92. {
  93. $connections = Config::get('db.connections');
  94. if (is_null($connection))
  95. {
  96. $connection = Config::get('db.default');
  97. }
  98. return (array_key_exists('prefix', $connections[$connection])) ? $connections[$connection]['prefix'] : '';
  99. }
  100. }