db.php 2.6 KB

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