Searched refs:sQuery (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 31427 ShellText sQuery; /* Set of queries used to read all content */ in do_meta_command() local 31474 initText(&sQuery); in do_meta_command() 31483 appendText(&sQuery,"SELECT * FROM ", 0); in do_meta_command() 31484 appendText(&sQuery,zTab,'"'); in do_meta_command() 31485 appendText(&sQuery," NOT INDEXED;", 0); in do_meta_command() 31487 appendText(&sQuery,"SELECT type,name,tbl_name,sql FROM sqlite_schema" in do_meta_command() 31490 appendText(&sQuery,"SELECT name,seq FROM sqlite_sequence" in do_meta_command() 31493 appendText(&sQuery,"SELECT tbl,idx,stat FROM sqlite_stat1" in do_meta_command() 31496 appendText(&sQuery, "SELECT * FROM ", 0); in do_meta_command() 31497 appendText(&sQuery, zTab, 0); in do_meta_command() [all …]
|