| 7 | |
| 8 | /* The sqlCol and sqlRow structures are used in order to return rows. */ |
| 9 | typedef 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 | |
| 16 | typedef struct sqlRow { |
| 17 | sqlite3_stmt *stmt; /* Handle for this query. */ |
nothing calls this directly
no outgoing calls
no test coverage detected