| 83 | }; |
| 84 | |
| 85 | struct cmd_open_args { |
| 86 | size_t pst_id; |
| 87 | const char *dbn; |
| 88 | const char *tbl; |
| 89 | const char *idx; |
| 90 | const char *retflds; |
| 91 | const char *filflds; |
| 92 | cmd_open_args() : pst_id(0), dbn(0), tbl(0), idx(0), retflds(0), |
| 93 | filflds(0) { } |
| 94 | }; |
| 95 | |
| 96 | struct cmd_exec_args { |
| 97 | const prep_stmt *pst; |
nothing calls this directly
no outgoing calls
no test coverage detected