db.php 1.4 KB

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