Gdn_SQLDriver::fetchTableSql PHP 메소드

fetchTableSql() 공개 메소드

Returns a platform-specific query to fetch table names.
public fetchTableSql ( mixed $LimitToPrefix = false )
$LimitToPrefix mixed Whether or not to limit the search to tables with the database prefix or a specific table name. The following types can be given for this parameter: - TRUE: The search will be limited to the database prefix. - FALSE: All tables will be fetched. Default. - string: The search will be limited to a like clause. The ':_' will be replaced with the database prefix.
    public function fetchTableSql($LimitToPrefix = false)
    {
        trigger_error(errorMessage('The selected database engine does not perform the requested task.', $this->ClassName, 'FetchTableSql'), E_USER_ERROR);
    }