databaseType, 'mysql', 5 ) != 0 ) { echo "ERROR: This script must be run on MySQL only!"; exit( 255 ); } if ( isset( $argv[$last_arg] ) && $argv[$last_arg] != '' ) { $type = trim( strtolower( $argv[$last_arg] ) ); $dict = NewDataDictionary( $db ); $tables = $dict->MetaTables(); $sequence_modifier = 1000; $out = null; foreach ( $tables as $table ) { if ( $type == 'truncate' ) { echo 'TRUNCATE ' . $table . ';' . "\n"; } } } } //Debug::Display(); ?>