|
|
class | QueryResultIterator |
| |
◆ QueryResultRow()
| duckdb::QueryResult::QueryResultRow::QueryResultRow |
( |
| ) |
|
|
inlineexplicit |
◆ IsNull()
| bool duckdb::QueryResult::QueryResultRow::IsNull |
( |
idx_t |
col_idx | ) |
const |
|
inline |
19624 {
19625 return chunk->GetValue(col_idx, row).IsNull();
19626 }
◆ GetValue()
| T duckdb::QueryResult::QueryResultRow::GetValue |
( |
idx_t |
col_idx | ) |
const |
|
inline |
19628 {
19629 return chunk->GetValue(col_idx, row).GetValue<T>();
19630 }
◆ GetBaseValue()
| Value duckdb::QueryResult::QueryResultRow::GetBaseValue |
( |
idx_t |
col_idx | ) |
const |
|
inline |
19631 {
19632 return chunk->GetValue(col_idx, row);
19633 }
◆ GetChunk()
| DataChunk & duckdb::QueryResult::QueryResultRow::GetChunk |
( |
| ) |
const |
|
inline |
19634 {
19635 return *chunk;
19636 }
◆ GetRowInChunk()
| idx_t duckdb::QueryResult::QueryResultRow::GetRowInChunk |
( |
| ) |
const |
|
inline |
19637 {
19638 return row;
19639 }
The documentation for this class was generated from the following file: