示例#1
0
 static function showTables()
 {
     self::getConection();
     $sb = new SchemaBuilder(self::$conectionDB);
     $rows = array("Tables in data base " . self::$conectionDB['database'], "-----------------------------");
     $result = $sb->showTables();
     return $result;
 }