Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance
5719 typedef struct completion_cursor completion_cursor; typedef5720 struct completion_cursor { struct5721 sqlite3_vtab_cursor base; /* Base class - must be first */5722 sqlite3 *db; /* Database connection for this cursor */5723 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */5724 char *zPrefix; /* The prefix for the word we want to complete */5725 char *zLine; /* The whole that we want to complete */5726 const char *zCurrentRow; /* Current output row */5727 int szRow; /* Length of the zCurrentRow string */5728 sqlite3_stmt *pStmt; /* Current statement */[all …]