| 2 | public: |
| 3 | |
| 4 | explicit Binder(sqlite3_stmt* _handle) { |
| 5 | handle = _handle; |
| 6 | param_count = sqlite3_bind_parameter_count(_handle); |
| 7 | anon_index = 0; |
| 8 | success = true; |
| 9 | } |
| 10 | |
| 11 | bool Bind(NODE_ARGUMENTS info, int argc, Statement* stmt) { |
| 12 | assert(anon_index == 0); |
nothing calls this directly
no outgoing calls
no test coverage detected