System:Model:showStatus

From Aspen Documentation

Returns the table status info.

Since 1.0

Arguments

array showStatus (string $table)

table
Database table name.

Returns

Returns an array.

Examples

Example:

$this->APP->model->showStatus('authentication');

Returns an array of information:

Array
(
    [Name] => authentication
    [Engine] => MyISAM
    [Version] => 10
    [Row_format] => Dynamic
    [Rows] => 1
    [Avg_row_length] => 92
    [Data_length] => 92
    [Max_data_length] => 281474976710655
    [Index_length] => 2048
    [Data_free] => 0
    [Auto_increment] => 2
    [Create_time] => 2009-03-10 19:01:01
    [Update_time] => 2009-03-22 21:09:20
    [Check_time] => 
    [Collation] => latin1_swedish_ci
    [Checksum] => 
    [Create_options] => 
    [Comment] => 
)