Browse Source

Added better support for aliases column to Query class.

Taylor Otwell 13 years ago
parent
commit
c480e19b6c
1 changed files with 34 additions and 1 deletions
  1. 34 1
      system/db/query.php

+ 34 - 1
system/db/query.php

@@ -120,8 +120,41 @@ class Query {
 	public function select()
 	{
 		$this->select = ($this->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
-		$this->select .= implode(', ', array_map(array($this, 'wrap'), func_get_args()));
 
+		$columns = array();
+
+		foreach (func_get_args() as $column)
+		{
+			// ---------------------------------------------------------
+			// If the column name is being aliases, we will need to
+			// wrap the column name and its alias.
+			// ---------------------------------------------------------
+			if (strpos(strtolower($column), ' as ') !== false)
+			{
+				$segments = explode(' ', $column);
+
+				$columns[] = $this->wrap($segments[0]).' AS '.$this->wrap($segments[2]);				
+			}
+			else
+			{
+				$columns[] = $this->wrap($column);
+			}
+		}
+
+		$this->select .= implode(', ', $columns);
+
+		return $this;
+	}
+
+	/**
+	 * Set the FROM clause.
+	 *
+	 * @param  string  $from
+	 * @return Query
+	 */
+	public function from($from)
+	{
+		$this->from = $from;
 		return $this;
 	}