manager.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php namespace System\DB;
  2. use System\Config;
  3. class Manager {
  4. /**
  5. * The established database connections.
  6. *
  7. * @var array
  8. */
  9. public static $connections = array();
  10. /**
  11. * Get a database connection. If no database name is specified, the default
  12. * connection will be returned as defined in the db configuration file.
  13. *
  14. * Note: Database connections are managed as singletons.
  15. *
  16. * @param string $connection
  17. * @return Connection
  18. */
  19. public static function connection($connection = null)
  20. {
  21. if (is_null($connection))
  22. {
  23. $connection = Config::get('db.default');
  24. }
  25. if ( ! array_key_exists($connection, static::$connections))
  26. {
  27. if (is_null($config = Config::get('db.connections.'.$connection)))
  28. {
  29. throw new \Exception("Database connection [$connection] is not defined.");
  30. }
  31. static::$connections[$connection] = new Connection($connection, (object) $config, new Connector);
  32. }
  33. return static::$connections[$connection];
  34. }
  35. /**
  36. * Begin a fluent query against a table.
  37. *
  38. * @param string $table
  39. * @param string $connection
  40. * @return Query
  41. */
  42. public static function table($table, $connection = null)
  43. {
  44. return static::connection($connection)->table($table);
  45. }
  46. /**
  47. * Magic Method for calling methods on the default database connection.
  48. */
  49. public static function __callStatic($method, $parameters)
  50. {
  51. return call_user_func_array(array(static::connection(), $method), $parameters);
  52. }
  53. }