Replies: 1 comment 1 reply
-
The problem doesn't arise in there is a better way to do get a single row:Sqlite::SqliteStatement stmt(connection, "select skills, proficiency from myResume");
stmt.execute();
std::cout << std::left << std::setw(8) << stmt.getString() << " : " << stmt.getInt(1) << std::endl;
//As the SqliteStatement class also has `get()` methods Some implementation notes (if you are curious about the type of row object): This is done to make it simple yet efficient (almost zero cost abstraction) C++ Wrapper over SQLite3 🙂 |
Beta Was this translation helpful? Give feedback.
-
I believe trying to get a row from a single row query result will result in:
when using
begin(stmt)
to retrieve therowIterator
.Example:
Beta Was this translation helpful? Give feedback.
All reactions