Beispiel #1
0
 /**
  * Select data from the database
  *
  * @param string			$table
  * @param array			$fields
  * @param string	 		$handler
  * @return mixed
  */
 public static function select($table, $fields = array(), $handler = null)
 {
     return Query_Select::create($table, $handler)->fields($fields);
 }