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

Function extractInt

src/openms/source/FORMAT/SqliteConnector.cpp:280–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers 6

extractBoolFunction · 0.85
readMinimalMethod · 0.85
setProtMethod · 0.85
setPCMethod · 0.85
nextProteinFunction · 0.85
readTransitions_Method · 0.85

Calls 1

StringClass · 0.50

Tested by

no test coverage detected