summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/database/helpers.html
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-24 19:58:27 +0200
committeradmin <devnull@localhost>2006-09-24 19:58:27 +0200
commit5808346898ec9c602893fc54540958a8c556be29 (patch)
tree2262ca12979e40dcd5cec8be5314b391571feb1d /user_guide/libraries/database/helpers.html
parent9659273ba7de6b73c3f188a174e526e692071f43 (diff)
Diffstat (limited to 'user_guide/libraries/database/helpers.html')
-rw-r--r--user_guide/libraries/database/helpers.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/user_guide/libraries/database/helpers.html b/user_guide/libraries/database/helpers.html
index dd05aef4c..0d299c023 100644
--- a/user_guide/libraries/database/helpers.html
+++ b/user_guide/libraries/database/helpers.html
@@ -67,21 +67,6 @@ Query Helpers
<h1>Query Helper Functions</h1>
-<h2>$query->num_rows()</h2>
-<p>The number of rows returned by the query. Note: In this example, <dfn>$query</dfn> is the variable that the query result object is assigned to:</p>
-
-<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
-echo $query->num_rows();
-</code>
-
-<h2>$query->num_fields()</h2>
-<p>The number of FIELDS returned by the query. Make sure to call the function using your query result object:</p>
-
-<code>$query = $this->db->query('SELECT * FROM my_table');<br /><br />
-echo $query->num_fields();
-</code>
-
-
<h2>$this->db->insert_id()</h2>
<p>The insert ID number when performing database inserts.</p>