result_get_float : 'result -> n:int -> float Return the [n]th field of the current result row as a float. **/
| 410 | <doc>Return the [n]th field of the current result row as a float.</doc> |
| 411 | **/ |
| 412 | Float _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 |
nothing calls this directly
no test coverage detected