| 103 | } |
| 104 | |
| 105 | const char *getText() { |
| 106 | auto ret = sqlite3_column_text(hStmt, iResIdx); |
| 107 | iResIdx++; |
| 108 | return reinterpret_cast<const char *>(ret); |
| 109 | } |
| 110 | |
| 111 | sqlite3_int64 getInt64() { |
| 112 | auto ret = sqlite3_column_int64(hStmt, iResIdx); |
no outgoing calls
no test coverage detected