From 8ede1a2ecbb62577afd32996956c5feaf7ddf9b6 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 5 Oct 2011 13:34:52 -0500 Subject: replacing the old HTML user guide with a Sphinx-managed user guide --- user_guide/database/table_data.html | 113 ------------------------------------ 1 file changed, 113 deletions(-) delete mode 100644 user_guide/database/table_data.html (limited to 'user_guide/database/table_data.html') diff --git a/user_guide/database/table_data.html b/user_guide/database/table_data.html deleted file mode 100644 index 14ff28d40..000000000 --- a/user_guide/database/table_data.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - -Table Data : CodeIgniter User Guide - - - - - - - - - - - - - - - - - - - - - -
- - - - - -

CodeIgniter User Guide Version 2.0.3

-
- - - - - - - - - -
- - - -
- - - -
- - - -

Table Data

- -

These functions let you fetch table information.

- -

$this->db->list_tables();

- -

Returns an array containing the names of all the tables in the database you are currently connected to. Example:

- -$tables = $this->db->list_tables();
-
-foreach ($tables as $table)
-{
-   echo $table;
-} -
- - -

$this->db->table_exists();

- -

Sometimes it's helpful to know whether a particular table exists before running an operation on it. -Returns a boolean TRUE/FALSE. Usage example:

- - -if ($this->db->table_exists('table_name'))
-{
-   // some code...
-} -
- -

Note: Replace table_name with the name of the table you are looking for.

- - - - - -
- - - - - - - \ No newline at end of file -- cgit v1.2.3-24-g4f1b