MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / extractInt64

Function extractInt64

src/openms/source/FORMAT/SqliteConnector.cpp:290–298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 3

setFeatureMethod · 0.85
getRunIDMethod · 0.85
getRunIDMethod · 0.85

Calls 1

StringClass · 0.50

Tested by

no test coverage detected