Home
last modified time | relevance | path

Searched defs:completion_cursor (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c8251 typedef struct completion_cursor completion_cursor; typedef
8252 struct completion_cursor { struct
8253 sqlite3_vtab_cursor base; /* Base class - must be first */
8254 sqlite3 *db; /* Database connection for this cursor */
8255 int nPrefix, nLine; /* Number of bytes in zPrefix and zLine */
8256 char *zPrefix; /* The prefix for the word we want to complete */
8257 char *zLine; /* The whole that we want to complete */
8258 const char *zCurrentRow; /* Current output row */
8259 int szRow; /* Length of the zCurrentRow string */
8260 sqlite3_stmt *pStmt; /* Current statement */
[all …]