Skip to main content

◆ getRecordsRaw() [1/2]

RawGetRecordsResponse gpudb::GPUdb::getRecordsRaw (const GetRecordsRequest &request_) const

Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.

This operation can be performed on tables and views. Records can be returned encoded as binary, json, or geojson.

This operation supports paging through the data via the offset and limit parameters. Note that when paging through a table, if the table (or the underlying table in case of a view) is updated (records are inserted, deleted or modified) the records retrieved may differ between calls based on the updates applied.

Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

◆ getRecordsRaw() [2/2]

RawGetRecordsResponse & gpudb::GPUdb::getRecordsRaw (const GetRecordsRequest &request_,
RawGetRecordsResponse &response_ ) const

Retrieves records from a given table, optionally filtered by an expression and/or sorted by a column.

This operation can be performed on tables and views. Records can be returned encoded as binary, json, or geojson.

This operation supports paging through the data via the offset and limit parameters. Note that when paging through a table, if the table (or the underlying table in case of a view) is updated (records are inserted, deleted or modified) the records retrieved may differ between calls based on the updates applied.

Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).