boost_sqlite 1
A sqlite C++ library
|
Representation of a row in a database. More...
#include <include/boost/sqlite/row.hpp>
Classes | |
struct | const_iterator |
Random access iterator used to iterate over the columns. More... | |
Public Member Functions | |
field | at (std::size_t idx) const |
Returns the field at idx ,. | |
const_iterator | begin () const |
Returns the begin of the column-range. | |
const_iterator | end () const |
Returns the end of the column-range. | |
field | operator[] (std::size_t idx) const |
Returns the field at idx . | |
std::size_t | size () const |
The size of the row. | |
Representation of a row in a database.
Is a random-access range.
All values that are obtained by view are valid until the next row is read.
field boost::sqlite::row::at | ( | std::size_t | idx | ) | const |
Returns the field at idx
,.
std::out_of_range |