|
Lightweight 0.20260617.0
|
API for reading an SQL query result set. More...
#include <SqlStatement.hpp>
Public Member Functions | |
| LIGHTWEIGHT_FORCE_INLINE | SqlResultCursor (SqlStatement &stmt) noexcept |
| Constructs a result cursor for the given SQL statement. | |
| SqlResultCursor (SqlResultCursor const &)=delete | |
| SqlResultCursor & | operator= (SqlResultCursor const &)=delete |
| constexpr | SqlResultCursor (SqlResultCursor &&other) noexcept |
| Move constructor. | |
| constexpr SqlResultCursor & | operator= (SqlResultCursor &&other) noexcept |
| Move assignment operator. | |
| LIGHTWEIGHT_FORCE_INLINE size_t | NumRowsAffected () const |
| Retrieves the number of rows affected by the last query. | |
| LIGHTWEIGHT_FORCE_INLINE size_t | NumColumnsAffected () const |
| Retrieves the number of columns affected by the last query. | |
| template<SqlOutputColumnBinder... Args> | |
| LIGHTWEIGHT_FORCE_INLINE void | BindOutputColumns (Args *... args) |
| template<SqlOutputColumnBinder T> | |
| LIGHTWEIGHT_FORCE_INLINE void | BindOutputColumn (SQLUSMALLINT columnIndex, T *arg) |
| Binds a single output column at the given index to store fetched data. | |
| LIGHTWEIGHT_FORCE_INLINE bool | FetchRow () |
| Fetches the next row of the result set. | |
| LIGHTWEIGHT_FORCE_INLINE std::expected< bool, SqlErrorInfo > | TryFetchRow (std::source_location location=std::source_location::current()) noexcept |
| Attempts to fetch the next row, returning an error info on failure instead of throwing. | |
| template<typename... Records> requires (((std::is_class_v<Records> && std::is_aggregate_v<Records>) && ...)) | |
| LIGHTWEIGHT_FORCE_INLINE void | BindOutputColumnsToRecord (Records *... records) |
| Binds the given records to the prepared statement to store the fetched data to. | |
| template<typename Record , typename... ColumnAccessors> | |
| LIGHTWEIGHT_FORCE_INLINE void | FetchAllRowWise (std::vector< Record > &out, std::size_t arrayDepth, ColumnAccessors const &... accessors) |
Fast bulk retrieval: materializes this result set into out via native ODBC row-wise array fetch. Forwards to SqlStatement::FetchAllRowWise; see its contract (eligibility and alignment preconditions are the caller's responsibility). | |
| template<SqlGetColumnNativeType T> | |
| LIGHTWEIGHT_FORCE_INLINE bool | GetColumn (SQLUSMALLINT column, T *result) const |
| template<SqlGetColumnNativeType T> | |
| LIGHTWEIGHT_FORCE_INLINE T | GetColumn (SQLUSMALLINT column) const |
| Retrieves the value of the column at the given index for the currently selected row. | |
| template<SqlGetColumnNativeType T> | |
| LIGHTWEIGHT_FORCE_INLINE std::optional< T > | GetNullableColumn (SQLUSMALLINT column) const |
| template<SqlGetColumnNativeType T> | |
| T | GetColumnOr (SQLUSMALLINT column, T &&defaultValue) const |
API for reading an SQL query result set.
Definition at line 466 of file SqlStatement.hpp.
|
inlineexplicitnoexcept |
Constructs a result cursor for the given SQL statement.
Definition at line 470 of file SqlStatement.hpp.
|
inlineconstexprnoexcept |
Move constructor.
Definition at line 480 of file SqlStatement.hpp.
|
inline |
Definition at line 497 of file SqlStatement.hpp.
|
inlineconstexprnoexcept |
Move assignment operator.
Definition at line 487 of file SqlStatement.hpp.
|
inline |
Retrieves the number of rows affected by the last query.
Definition at line 507 of file SqlStatement.hpp.
Referenced by Lightweight::DataMapper::Delete().
|
inline |
Retrieves the number of columns affected by the last query.
Definition at line 513 of file SqlStatement.hpp.
Referenced by Lightweight::DataMapper::Query().
|
inline |
Binds the given arguments to the prepared statement to store the fetched data to.
The statement must be prepared before calling this function.
Definition at line 522 of file SqlStatement.hpp.
|
inline |
Binds a single output column at the given index to store fetched data.
Definition at line 529 of file SqlStatement.hpp.
|
inline |
Fetches the next row of the result set.
Definition at line 535 of file SqlStatement.hpp.
Referenced by Lightweight::DataMapper::ConfigureRelationAutoLoading(), and Lightweight::DataMapper::Query().
|
inlinenoexcept |
Attempts to fetch the next row, returning an error info on failure instead of throwing.
Definition at line 541 of file SqlStatement.hpp.
|
inline |
Binds the given records to the prepared statement to store the fetched data to.
Definition at line 550 of file SqlStatement.hpp.
|
inline |
Fast bulk retrieval: materializes this result set into out via native ODBC row-wise array fetch. Forwards to SqlStatement::FetchAllRowWise; see its contract (eligibility and alignment preconditions are the caller's responsibility).
| out | Destination vector; results are appended. |
| arrayDepth | Requested maximum rows per SQLFetchScroll round-trip. |
| accessors | One invocable per result column; accessor(record) yields its mutable value. |
Definition at line 562 of file SqlStatement.hpp.
|
inline |
Retrieves the value of the column at the given index for the currently selected row.
Returns true if the value is not NULL, false otherwise.
Definition at line 573 of file SqlStatement.hpp.
Referenced by Lightweight::DataMapper::ConfigureRelationAutoLoading(), and Lightweight::DataMapper::Query().
|
inline |
Retrieves the value of the column at the given index for the currently selected row.
Definition at line 580 of file SqlStatement.hpp.
|
inline |
Retrieves the value of the column at the given index for the currently selected row.
If the value is NULL, std::nullopt is returned.
Definition at line 589 of file SqlStatement.hpp.
|
inline |
Retrieves the value of the column at the given index for the currently selected row.
If the value is NULL, the given defaultValue is returned.
Definition at line 598 of file SqlStatement.hpp.