Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance
7449 typedef struct completion_cursor completion_cursor; typedef7450 struct completion_cursor { struct7451 sqlite3_vtab_cursor base; /* Base class - must be first */7452 sqlite3 *db; /* Database connection for this cursor */7453 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */7454 char *zPrefix; /* The prefix for the word we want to complete */7455 char *zLine; /* The whole that we want to complete */7456 const char *zCurrentRow; /* Current output row */7457 int szRow; /* Length of the zCurrentRow string */7458 sqlite3_stmt *pStmt; /* Current statement */[all …]