From 910d8620519d777ab45bdad5fb6dc9f05c6b2869 Mon Sep 17 00:00:00 2001 From: admin Date: Tue, 26 Sep 2006 02:09:05 +0000 Subject: --- user_guide/database/helpers.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'user_guide') diff --git a/user_guide/database/helpers.html b/user_guide/database/helpers.html index 1d1fb37ad..8302fe6ee 100644 --- a/user_guide/database/helpers.html +++ b/user_guide/database/helpers.html @@ -76,6 +76,14 @@ Query Helpers correct number of affected rows. By default this hack is enabled but it can be turned off in the database driver file.

+

$this->db->count_all();

+

Permits you to determine the number of rows in a particular table. Submit the table name in the first parameter. Example:

+echo $this->db->count_all('my_table');
+
+// Produces an integer, like 25 +
+ +

$this->db->platform()

Outputs the database platform you are running (MySQL, MS SQL, Postgre, etc...):

echo $this->db->platform(); @@ -86,7 +94,6 @@ correct number of affected rows. By default this hack is enabled but it can be echo $this->db->version(); -

$this->db->last_query();

Returns the last query that was run (the query string, not the result). Example:

-- cgit v1.2.3-24-g4f1b