db.php 2.9 KB

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