summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/database/results.html
diff options
context:
space:
mode:
Diffstat (limited to 'user_guide/libraries/database/results.html')
-rw-r--r--user_guide/libraries/database/results.html36
1 files changed, 1 insertions, 35 deletions
diff --git a/user_guide/libraries/database/results.html b/user_guide/libraries/database/results.html
index a9377764e..342e7e4b4 100644
--- a/user_guide/libraries/database/results.html
+++ b/user_guide/libraries/database/results.html
@@ -64,7 +64,7 @@ Query Results
-<h1>Query Results</h1>
+<h1>Generating Query Results</h1>
<p>There are several ways to generate query results:</p>
@@ -179,40 +179,6 @@ Query Results
</p>
-<h1><br />Query Result Helpers</h1>
-
-<p>The following functions provide useful information when dealing with query results.</p>
-
-<h2>$query->num_rows()</h2>
-<p>The number of rows returned by the query. Note: <dfn>$query</dfn> is the variable that the query was 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>
-
-<h2>$this->db->affected_rows()</h2>
-<p>Displays the number of affected rows, when doing "write" type queries (insert, update, etc.).</p>
-</p>Note: In MySQL "DELETE FROM TABLE" returns 0 affected rows. The database class has a small hack that allows it to return the
-correct number of affected rows. By default this hack is enabled but it can be turned off in the database driver file.</p>
-
-
-<h2>$this->db->version()</h2>
-<p>Outputs the database version you are running:</p>
-
-<code>echo $this->db->version();</code>
-
-