class MySqlReflector implements Reflector

internal  
 

The reflector for MySQL databases.

Methods

__construct(Driver $driver)

No description

array
getTables()

Returns list of tables.

array
getColumns(string $table)

Returns metadata for all columns in a table.

array
getIndexes(string $table)

Returns metadata for all indexes in a table.

array
getForeignKeys(string $table)

Returns metadata for all foreign keys in a table.

Details

at line 26
__construct(Driver $driver)

No description

Parameters

Driver $driver

at line 35
array getTables()

Returns list of tables.

Return Value

array

at line 52
array getColumns(string $table)

Returns metadata for all columns in a table.

Parameters

string $table

Return Value

array

at line 76
array getIndexes(string $table)

Returns metadata for all indexes in a table.

Parameters

string $table

Return Value

array

at line 94
array getForeignKeys(string $table)

Returns metadata for all foreign keys in a table.

Parameters

string $table

Return Value

array

Exceptions

NotSupportedException

Traits

Strict