Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance
11021 typedef struct completion_cursor completion_cursor; typedef11022 struct completion_cursor { struct11023 sqlite3_vtab_cursor base; /* Base class - must be first */11024 sqlite3 *db; /* Database connection for this cursor */11025 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */11026 char *zPrefix; /* The prefix for the word we want to complete */11027 char *zLine; /* The whole that we want to complete */11028 const char *zCurrentRow; /* Current output row */11029 int szRow; /* Length of the zCurrentRow string */11030 sqlite3_stmt *pStmt; /* Current statement */[all …]