Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance
9080 typedef struct completion_cursor completion_cursor; typedef9081 struct completion_cursor { struct9082 sqlite3_vtab_cursor base; /* Base class - must be first */9083 sqlite3 *db; /* Database connection for this cursor */9084 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */9085 char *zPrefix; /* The prefix for the word we want to complete */9086 char *zLine; /* The whole that we want to complete */9087 const char *zCurrentRow; /* Current output row */9088 int szRow; /* Length of the zCurrentRow string */9089 sqlite3_stmt *pStmt; /* Current statement */[all …]