db.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 DB\Connection
  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. if (is_null($config = Config::get('db.connections.'.$connection)))
  27. {
  28. throw new \Exception("Database connection [$connection] is not defined.");
  29. }
  30. static::$connections[$connection] = new DB\Connection($connection, (object) $config, new DB\Connector);
  31. }
  32. return static::$connections[$connection];
  33. }
  34. /**
  35. * Begin a fluent query against a table.
  36. *
  37. * @param string $table
  38. * @param string $connection
  39. * @return DB\Query
  40. */
  41. public static function table($table, $connection = null)
  42. {
  43. return static::connection($connection)->table($table);
  44. }
  45. /**
  46. * Magic Method for calling methods on the default database connection.
  47. */
  48. public static function __callStatic($method, $parameters)
  49. {
  50. return call_user_func_array(array(static::connection(), $method), $parameters);
  51. }
  52. }