| 288 | } |
| 289 | |
| 290 | Int64 extractInt64(sqlite3_stmt* stmt, int pos) |
| 291 | { |
| 292 | Int64 res; |
| 293 | if (!extractValue<Int64>(&res, stmt, pos)) |
| 294 | { |
| 295 | throw Exception::SqlOperationFailed(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Conversion of column " + String(pos) + " to Int64 failed"); |
| 296 | } |
| 297 | return res; |
| 298 | } |
| 299 | |
| 300 | String extractString(sqlite3_stmt* stmt, int pos) |
| 301 | { |
no test coverage detected