| 3479 | } |
| 3480 | |
| 3481 | static int dbstmt_close(Lua L) |
| 3482 | { |
| 3483 | SP sp = getsp(L); |
| 3484 | luaL_checkudata(L, 1, dbtypes.dbstmt); |
| 3485 | dbstmt_t *dbstmt = lua_touserdata(L, 1); |
| 3486 | lua_end_step(sp->clnt, sp, dbstmt->stmt); |
| 3487 | donate_stmt(sp, dbstmt); |
| 3488 | return 0; |
| 3489 | } |
| 3490 | |
| 3491 | static int dbstmt_column_count(Lua L) |
| 3492 | { |
nothing calls this directly
no test coverage detected