You appear to be a bot. Output may be restricted
Description
Return the number of tables for the engine
Usage
$integer = OIK_innodb::query_count( $engine );
Parameters
- $engine
- ( string ) optional default: MyISAM – InnoDB, MyISAM, etc
Returns
integer countSource
File name: oik-batch/class-oik-innodb.phpLines:
1 to 4 of 4
function query_count( $engine="MyISAM" ) { $count = bw_array_get( $this->counts, $engine, 0 ); return( $count ); }View on GitHub