close : 'db -> void Closes the database. **/
| 218 | <doc>Closes the database.</doc> |
| 219 | **/ |
| 220 | void _hx_sqlite_close(Dynamic handle) |
| 221 | { |
| 222 | database *db = getDatabase(handle); |
| 223 | db->destroy(true); |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | last_insert_id : 'db -> int |
nothing calls this directly
no test coverage detected