| 110 | } |
| 111 | |
| 112 | const char *getText() { |
| 113 | auto ret = sqlite3_column_text(hStmt, iResIdx); |
| 114 | iResIdx++; |
| 115 | return reinterpret_cast<const char *>(ret); |
| 116 | } |
| 117 | |
| 118 | sqlite3_int64 getInt64() { |
| 119 | auto ret = sqlite3_column_int64(hStmt, iResIdx); |
no outgoing calls
no test coverage detected