Browse Source

more additions.

Taylor Otwell 13 years ago
parent
commit
fb1acc31d2
3 changed files with 39 additions and 13 deletions
  1. 4 4
      laravel/db/connection.php
  2. 8 5
      laravel/db/query.php
  3. 27 4
      laravel/loader.php

+ 4 - 4
laravel/db/connection.php

@@ -35,7 +35,7 @@ class Connection {
 	 *
 	 * @var Connector
 	 */
-	protected $connector;
+	private $connector;
 
 	/**
 	 * Create a new Connection instance.
@@ -57,7 +57,7 @@ class Connection {
 	 *
 	 * @return void
 	 */
-	protected function connect()
+	public function connect()
 	{
 		$this->pdo = $this->connector->connect($this->config);
 	}
@@ -67,7 +67,7 @@ class Connection {
 	 *
 	 * @return bool
 	 */
-	protected function connected()
+	public function connected()
 	{
 		return ! is_null($this->pdo);
 	}
@@ -128,7 +128,7 @@ class Connection {
 	 * @param  array         $results
 	 * @return mixed
 	 */
-	protected function execute(\PDOStatement $statement, $bindings)
+	private function execute(\PDOStatement $statement, $bindings)
 	{
 		$result = $statement->execute($bindings);
 

+ 8 - 5
laravel/db/query.php

@@ -471,7 +471,13 @@ class Query {
 	{
 		$this->select = 'SELECT '.$aggregator.'('.$this->wrap($column).') AS '.$this->wrap('aggregate');
 
-		return $this->first()->aggregate;
+		$result = $this->connection->scalar($this->compile_select(), $this->bindings);
+
+		// Reset the SELECT clause so more queries can be performed using the same instance.
+		// This is helpful for getting aggregates and then getting actual results.
+		$this->select = null;
+
+		return $result;
 	}
 
 	/**
@@ -656,10 +662,7 @@ class Query {
 	 *
 	 * @return string
 	 */
-	protected function wrapper()
-	{
-		return '"';
-	}
+	protected function wrapper() { return '"'; }
 
 	/**
 	 * Create query parameters from an array of values.

+ 27 - 4
laravel/loader.php

@@ -33,7 +33,7 @@ class Loader {
 	{
 		static::$aliases = Config::get('aliases');
 
-		foreach ($paths as $path) { static::register($path); }
+		foreach ($paths as $path) { static::register_path($path); }
 	}
 
 	/**
@@ -113,15 +113,38 @@ class Loader {
 	}
 
 	/**
-	 * Register a path with the auto-loader. After registering the path, it will be
-	 * checked similarly to the models and libraries directories.
+	 * Register a path with the auto-loader.
+	 *
+	 * After registering the path, it will be checked similarly to the models and libraries directories.
 	 *
 	 * @param  string  $path
 	 * @return void
 	 */
-	public static function register($path)
+	public static function register_path($path)
 	{
 		static::$paths[] = rtrim($path, '/').'/';
 	}
 
+	/**
+	 * Register an alias with the auto-loader.
+	 *
+	 * @param  array  $alias
+	 * @return void
+	 */
+	public static function register_alias($alias)
+	{
+		static::$aliases = array_merge(static::$aliases, $alias);
+	}
+
+	/**
+	 * Remove an alias from the auto-loader's list of aliases.
+	 *
+	 * @param  string  $alias
+	 * @return void
+	 */
+	public static function forget_alias($alias)
+	{
+		unset(static::$aliases[$alias]);
+	}
+
 }