| 278 | } |
| 279 | |
| 280 | int extractInt(sqlite3_stmt* stmt, int pos) |
| 281 | { |
| 282 | int res; |
| 283 | if (!extractValue<int>(&res, stmt, pos)) |
| 284 | { |
| 285 | throw Exception::SqlOperationFailed(__FILE__, __LINE__, OPENMS_PRETTY_FUNCTION, "Conversion of column " + String(pos) + " to int failed"); |
| 286 | } |
| 287 | return res; |
| 288 | } |
| 289 | |
| 290 | Int64 extractInt64(sqlite3_stmt* stmt, int pos) |
| 291 | { |
no test coverage detected