CMS  Version 3.9
table_information.inc
Go to the documentation of this file.
1 <?php
7 class TableInformation extends DataItem
8 {
9  var $table = "INFORMATION_SCHEMA.tables";
10  var $primary_key = "TABLE_NAME";
11 
12  var $fields = array("TABLE_SCHEMA" => String,
13  "TABLE_NAME" => String,
14  "TABLE_TYPE" => String,
15  "ENGINE" => String,
16  "TABLE_ROWS" => Number,
17  "TABLE_COLLATION" => String);
18 
19  function save()
20  {
21  throw new FakoliException("READ ONLY");
22  }
23 
24  function insert()
25  {
26  throw new FakoliException("READ ONLY");
27  }
28 
29  function update()
30  {
31  throw new FakoliException("READ ONLY");
32  }
33 
34 }?>
FakoliException is the base exception class for all Fakoli errors.
Definition: core.inc:53