Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c11021 typedef struct completion_cursor completion_cursor; typedef
11022 struct completion_cursor { struct
11023 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 …]