Lightweight 0.1.0
|
SQL query result row iterator. More...
#include <SqlStatement.hpp>
Public Member Functions | |
SqlRowIterator (SqlConnection &conn) | |
iterator | begin () |
iterator | end () noexcept |
SQL query result row iterator.
Can be used to iterate over rows of the database and fetch them into a record type.
T | The record type to fetch the rows into. struct MyRecord
{
Field<int> field2;
Field<double> field3;
};
{
// row is of type MyRecord
// row.field1, row.field2, row.field3 are accessible
}
|
Definition at line 472 of file SqlStatement.hpp.
|
inlineexplicit |
Definition at line 475 of file SqlStatement.hpp.
|
inline |
Definition at line 536 of file SqlStatement.hpp.
|
inlinenoexcept |
Definition at line 546 of file SqlStatement.hpp.