Gdn_SQLDriver::fetchTableSchema PHP Method

fetchTableSchema() public method

Returns an array of schema data objects for each field in the specified table. The returned array of objects contains the following properties: Name, PrimaryKey, Type, AllowNull, Default, Length, Enum.
public fetchTableSchema ( string $Table )
$Table string The name of the table to get schema data for.
    public function fetchTableSchema($Table)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'FetchTableSchema'), E_USER_ERROR);
    }