| 109 | } |
| 110 | |
| 111 | sqlite3_int64 getInt64() { |
| 112 | auto ret = sqlite3_column_int64(hStmt, iResIdx); |
| 113 | iResIdx++; |
| 114 | return ret; |
| 115 | } |
| 116 | |
| 117 | const void *getBlob(int &size) { |
| 118 | size = sqlite3_column_bytes(hStmt, iResIdx); |
no outgoing calls
no test coverage detected