Home | History | Annotate | Download | only in dist

Lines Matching refs:INTO

546 ** A virtual table module that merely echos method calls into TCL
595 ** INSERT INTO t1(a) VALUES('1');
596 ** INSERT INTO t1(a) VALUES('2');
597 ** INSERT INTO t1(a) VALUES('3');
843 "INSERT INTO temp.idx2 "
894 ** throw an exception if the user tries to insert a row into the
1154 ** sqlite_exec_printf() API to substitue a string into an SQL statement.
1663 fprintf(p->out,"INSERT INTO %s VALUES(",p->zDestTable);
1980 "INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"
2007 zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0);
2151 ".import FILE TABLE Import data from FILE into TABLE\n"
2288 /* Parse the input line into tokens.
2493 char *zTable = azArg[2]; /* Insert data into this table */
2502 char **azCol; /* zLine[] broken up into columns */
2535 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO '%q' VALUES(?", zTable);