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

Class sqlCol

sqlite_wrap.h:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7
8/* The sqlCol and sqlRow structures are used in order to return rows. */
9typedef struct sqlCol {
10 int type;
11 int64_t i; /* Integer or len of string/blob. */
12 const char *s; /* String or blob. */
13 double d; /* Double. */
14} sqlCol;
15
16typedef struct sqlRow {
17 sqlite3_stmt *stmt; /* Handle for this query. */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected