You appear to be a bot. Output may be restricted
Description
Query the engine for each table in the table_schemaselect table_name, engine from information_schema.tables where table_schema = 'herb_wp373';
Usage
OIK_innodb::query_table_engines();
Parameters
Returns
voidSource
File name: oik-batch/class-oik-innodb.phpLines:
1 to 7 of 7
function query_table_engines() { global $wpdb; $query = $wpdb->prepare( "select table_name, engine from information_schema.tables where table_schema = %s", DB_NAME ); bw_trace2( $query, "query" ); $this->results = $wpdb->get_results( $query ); return( $this->results ); }View on GitHub