芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/resuleg/modules/database/classes/kohana/database/query/builder/where.php
and_where($column, $op, $value); } /** * Creates a new "AND WHERE" condition for the query. * * @param mixed column name or array($column, $alias) or object * @param string logic operator * @param mixed column value * @return $this */ public function and_where($column, $op, $value) { $this->_where[] = array('AND' => array($column, $op, $value)); return $this; } /** * Creates a new "OR WHERE" condition for the query. * * @param mixed column name or array($column, $alias) or object * @param string logic operator * @param mixed column value * @return $this */ public function or_where($column, $op, $value) { $this->_where[] = array('OR' => array($column, $op, $value)); return $this; } /** * Alias of and_where_open() * * @return $this */ public function where_open() { return $this->and_where_open(); } /** * Opens a new "AND WHERE (...)" grouping. * * @return $this */ public function and_where_open() { $this->_where[] = array('AND' => '('); return $this; } /** * Opens a new "OR WHERE (...)" grouping. * * @return $this */ public function or_where_open() { $this->_where[] = array('OR' => '('); return $this; } /** * Closes an open "AND WHERE (...)" grouping. * * @return $this */ public function where_close() { return $this->and_where_close(); } /** * Closes an open "AND WHERE (...)" grouping. * * @return $this */ public function and_where_close() { $this->_where[] = array('AND' => ')'); return $this; } /** * Closes an open "OR WHERE (...)" grouping. * * @return $this */ public function or_where_close() { $this->_where[] = array('OR' => ')'); return $this; } /** * Applies sorting with "ORDER BY ..." * * @param mixed column name or array($column, $alias) or object * @param string direction of sorting * @return $this */ public function order_by($column, $direction = NULL) { $this->_order_by[] = array($column, $direction); return $this; } /** * Return up to "LIMIT ..." results * * @param integer maximum results to return or NULL to reset * @return $this */ public function limit($number) { $this->_limit = $number; return $this; } } // End Database_Query_Builder_Where