1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55:
<?php
interface DBMSUtils
{
const DUMP_STRUCTURE = 1;
const DUMP_DATA = 2;
const DUMP_STRUCTURE_AND_DATA = 3;
function get_dbms_version();
function list_databases();
function get_database_name();
function create_database($database_name);
function list_tables();
function list_and_desc_tables($with_prefix = false);
function desc_table($table);
function create_table($table_name, array $fields, array $options = array());
function optimize($tables);
function repair($tables);
function truncate($tables);
function drop($tables);
function add_column($table_name, $column_name, array $column_description);
function drop_column($table_name, $column_name);
function dump_phpboost(FileWriter $file, $what = self::DUMP_STRUCTURE_AND_DATA);
function dump_tables(FileWriter $file, array $tables, $what = self::DUMP_STRUCTURE_AND_DATA);
function dump_table(FileWriter $file, $table, $what = self::DUMP_STRUCTURE_AND_DATA);
function parse_file(File $file, $prefix = '');
}
?>