| 2600 | } |
| 2601 | |
| 2602 | static int dbtable_emit(Lua L) |
| 2603 | { |
| 2604 | luaL_checkudata(L, 1, dbtypes.dbtable); |
| 2605 | dbtable_t *table = lua_touserdata(L, 1); |
| 2606 | lua_pop(L, 1); |
| 2607 | return dbtable_emit_int(L, table); |
| 2608 | } |
| 2609 | |
| 2610 | dbstmt_t *new_dbstmt(Lua lua, SP sp, sqlite3_stmt *stmt) |
| 2611 | { |
no test coverage detected