From 88f8d9f4c9d590cc14e71cd77f34e5e2abe57e21 Mon Sep 17 00:00:00 2001
From: Greg Aker
$query = $this->db->get_where('mytable', array('id' => $id), $limit, $offset);
Please read the about the where function below for more information.
-Note: get_where() was formerly known as getwhere(), which has been deprecated
+Note: get_where() was formerly known as getwhere(), which has been removed
Permits you to write the SELECT portion of your query:
@@ -274,7 +274,7 @@ $this->db->or_where('id >', $id);Note: or_where() was formerly known as orwhere(), which has been deprecated.
+Note: or_where() was formerly known as orwhere(), which has been removed.
Note: or_like() was formerly known as orlike(), which has been deprecated.
+Note: or_like() was formerly known as orlike(), which has been removed.
This function is identical to like(), except that it generates NOT LIKE statements:
$this->db->not_like('title', 'match');
@@ -381,7 +381,7 @@ $this->db->or_not_like('body', 'match');
// Produces: GROUP BY title, date
-Note: group_by() was formerly known as groupby(), which has been deprecated.
+Note: group_by() was formerly known as groupby(), which has been removed.
Note: order_by() was formerly known as orderby(), which has been deprecated.
+Note: order_by() was formerly known as orderby(), which has been removed.
Note: random ordering is not currently supported in Oracle or MSSQL drivers. These will default to 'ASC'.
Lets you limit the number of rows you would like returned by the query:
-- cgit v1.2.3-24-g4f1b