MCPcopy Create free account
hub / github.com/antirez/botlib / sqlRow

Class sqlRow

sqlite_wrap.h:16–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14} sqlCol;
15
16typedef struct sqlRow {
17 sqlite3_stmt *stmt; /* Handle for this query. */
18 int cols; /* Number of columns. */
19 sqlCol *col; /* Array of columns. Note that the first time this
20 will be NULL, so we now we don't need to call
21 sqlite3_step() since it was called by the
22 query function. */
23} sqlRow;
24
25#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected