Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance
8173 typedef struct completion_cursor completion_cursor; typedef8174 struct completion_cursor { struct8175 sqlite3_vtab_cursor base; /* Base class - must be first */8176 sqlite3 *db; /* Database connection for this cursor */8177 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */8178 char *zPrefix; /* The prefix for the word we want to complete */8179 char *zLine; /* The whole that we want to complete */8180 const char *zCurrentRow; /* Current output row */8181 int szRow; /* Length of the zCurrentRow string */8182 sqlite3_stmt *pStmt; /* Current statement */[all …]