MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / _hx_sqlite_result_get_float

Function _hx_sqlite_result_get_float

src/hx/libs/sqlite/Sqlite.cpp:412–416  ·  view source on GitHub ↗

result_get_float : 'result -> n:int -> float Return the [n]th field of the current result row as a float. **/

Source from the content-addressed store, hash-verified

410 <doc>Return the [n]th field of the current result row as a float.</doc>
411**/
412Float _hx_sqlite_result_get_float(Dynamic handle,int n)
413{
414 sqlite3_stmt *r = prepStatement(handle,n);
415 return sqlite3_column_double(r,n);
416}
417
418
419

Callers

nothing calls this directly

Calls 1

prepStatementFunction · 0.85

Tested by

no test coverage detected