Lines Matching full:sql
290 ** A global char* and an SQL function to access its current value
291 ** from within an SQL statement. This program used to use the
292 ** sqlite_exec_printf() API to substitue a string into an SQL statement.
430 #define MODE_Insert 5 /* Generate SQL "insert" statements */
484 ** Output the given string as a quoted string using SQL quoting conventions.
1056 const char *zSql, /* SQL to be evaluated */
1064 const char *zLeftover; /* Tail of unprocessed SQL */
1090 /* echo the sql statement if echo on */
1179 ** the table type ("index" or "table") and SQL to create the table.
1209 "INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"
1275 ** the contents of the query are output as SQL statements.
1307 ".dump ?TABLE? ... Dump the database in an SQL text format\n"
1331 " insert SQL insert statements for TABLE\n"
1341 ".read FILENAME Execute SQL in FILENAME\n"
1551 "SELECT name, type, sql FROM sqlite_master "
1552 "WHERE sql NOT NULL AND type=='table' AND name!='sqlite_sequence'", 0
1555 "SELECT name, type, sql FROM sqlite_master "
1559 "SELECT sql FROM sqlite_master "
1560 "WHERE sql NOT NULL AND type IN ('index','trigger','view')", 0
1567 "SELECT name, type, sql FROM sqlite_master "
1569 " AND sql NOT NULL", 0);
1571 "SELECT sql FROM sqlite_master "
1572 "WHERE sql NOT NULL"
1652 int nByte; /* Number of bytes in an SQL string */
1655 char *zSql; /* An SQL statement */
2019 " sql text\n"
2022 new_colv[0] = "sql";
2033 " sql text\n"
2036 new_colv[0] = "sql";
2043 "SELECT sql FROM "
2044 " (SELECT sql sql, type type, tbl_name tbl_name, name name"
2046 " SELECT sql, type, tbl_name, name FROM sqlite_temp_master) "
2047 "WHERE tbl_name LIKE shellstatic() AND type!='meta' AND sql NOTNULL "
2054 "SELECT sql FROM "
2055 " (SELECT sql sql, type type, tbl_name tbl_name, name name"
2057 " SELECT sql, type, tbl_name, name FROM sqlite_temp_master) "
2058 "WHERE type!='meta' AND sql NOTNULL AND name NOT LIKE 'sqlite_%'"
2225 ** Return TRUE if the line typed in is an SQL command terminator other
2226 ** than a semi-colon. The SQL Server style "go" command is understood
2236 return 1; /* SQL Server */
2242 ** Return true if zSql is a complete SQL statement. Return false if it
2356 if( !_all_whitespace(zSql) ) fprintf(stderr, "Error: incomplete SQL: %s\n", zSql);
2495 "Usage: %s [OPTIONS] FILENAME [SQL]\n"
2686 fprintf(stderr,"Error: unable to process SQL \"%s\"\n", zFirstCmd);
2700 "Enter SQL statements terminated with a \";\"\n",