MCPcopy Create free account
hub / github.com/davisking/dlib / get_column_as_int64

Method get_column_as_int64

dlib/sqlite/sqlite.h:343–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

341 }
342
343 int64 get_column_as_int64 (
344 unsigned long idx
345 ) const
346 {
347 // make sure requires clause is not broken
348 DLIB_ASSERT(idx < get_num_columns(),
349 "\t int64 statement::get_column_as_int64()"
350 << "\n\t Invalid column index."
351 << "\n\t idx: " << idx
352 << "\n\t this: " << this
353 );
354
355 return sqlite3_column_int64(stmt, idx);
356 }
357
358 const std::string get_column_name (
359 unsigned long idx

Callers 1

query_int64Function · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected