| 152 | } |
| 153 | |
| 154 | std::string column_text(int col) { |
| 155 | return std::string(reinterpret_cast<const char *>(sqlite3_column_text(stmt_, col))); |
| 156 | } |
| 157 | |
| 158 | uint64_t column_int64(int col) { |
| 159 | return sqlite3_column_int64(stmt_, col); |
no outgoing calls
no test coverage detected