| 14 | } sqlCol; |
| 15 | |
| 16 | typedef 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 |
nothing calls this directly
no outgoing calls
no test coverage detected