MCPcopy Create free account
hub / github.com/WiseLibs/better-sqlite3 / Binder

Method Binder

src/util/binder.cpp:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2public:
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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected