More method scaffolding
This commit is contained in:
parent
be46ca3f90
commit
a29d3a2361
@ -24,6 +24,8 @@ class Query_Builder {
|
||||
$from_string,
|
||||
$where_array,
|
||||
$where_string,
|
||||
$insert_string,
|
||||
$update_string,
|
||||
$set_array,
|
||||
$set_string,
|
||||
$limit,
|
||||
@ -305,6 +307,35 @@ class Query_Builder {
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Group the results by the selected field(s)
|
||||
*
|
||||
* @param mixed $field
|
||||
* @return $this
|
||||
*/
|
||||
public function group_by($field)
|
||||
{
|
||||
// @todo Implement group_by method
|
||||
return $this;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Order the results by the selected field(s)
|
||||
*
|
||||
* @param string $field
|
||||
* @param string $type
|
||||
* @return $this
|
||||
*/
|
||||
public function order_by($field, $type="")
|
||||
{
|
||||
// @todo implement order_by method
|
||||
return $this;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Set a limit on the current sql statement
|
||||
*
|
||||
@ -364,21 +395,6 @@ class Query_Builder {
|
||||
return $result;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Order the results by the selected field(s)
|
||||
*
|
||||
* @param string $field
|
||||
* @param string $type
|
||||
* @return $this
|
||||
*/
|
||||
public function order_by($field, $type="")
|
||||
{
|
||||
// @todo implement order_by method
|
||||
return $this;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
// ! Insert/Update/Delete Queries
|
||||
// --------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user