An interface for on-the-flight mapping statement result set from DbType into whatever type you provide without additional allocations.
More...
template<typename DbType>
class storages::mysql::MappedStatementResultSet< DbType >
An interface for on-the-flight mapping statement result set from DbType into whatever type you provide without additional allocations.
DbType
is expected to be either an aggregate of supported types or a supported type itself for methods taking FieldTag
; DbType is expected to match DB representation - same amount of columns (1 for FieldTag
overload) and matching types.
You are expected to provide a converter function T Convert(DbType&&, storages::mysql::convert:To<T>)
in either T's namespace or storages::mysql::convert
namespace
Definition at line 206 of file statement_result_set.hpp.