SQLiteC++
0.5.0
SQLiteC++ is a smart and easy to use C++ SQLite3 wrapper.
|
Classes | |
class | Column |
Encapsulation of a Column in a row of the result pointed by the prepared Statement. More... | |
class | Database |
RAII management of a SQLite Database Connection. More... | |
class | Exception |
Encapsulation of the error message from SQLite3, based on std::runtime_error. More... | |
class | Statement |
RAII encapsulation of a prepared SQLite Statement. More... | |
class | Transaction |
RAII encapsulation of a SQLite Transaction. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &aStream, const Column &aColumn) |
Standard std::ostream text inserter. More... | |
std::ostream & SQLite::operator<< | ( | std::ostream & | aStream, |
const Column & | aColumn | ||
) |
Standard std::ostream text inserter.
Insert the text value of the Column object, using getText(), into the provided stream.
[in] | aStream | Stream to use |
[in] | aColumn | Column object to insert into the provided stream |
Definition at line 74 of file Column.cpp.