| 36 | namespace dena { |
| 37 | |
| 38 | prep_stmt::prep_stmt() |
| 39 | : dbctx(0), table_id(static_cast<size_t>(-1)), |
| 40 | idxnum(static_cast<size_t>(-1)) |
| 41 | { |
| 42 | } |
| 43 | prep_stmt::prep_stmt(dbcontext_i *c, size_t tbl, size_t idx, |
| 44 | const fields_type& rf, const fields_type& ff) |
| 45 | : dbctx(c), table_id(tbl), idxnum(idx), ret_fields(rf), filter_fields(ff) |
nothing calls this directly
no test coverage detected