Searched refs:zInsert (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | test8.c | 1031 char *zInsert = 0; in echoUpdate() local 1034 zInsert = sqlite3_mprintf("INSERT INTO %Q (", pVtab->zTableName); in echoUpdate() 1035 if( !zInsert ){ in echoUpdate() 1041 string_concat(&zInsert, "rowid", 0, &rc); in echoUpdate() 1046 string_concat(&zInsert, in echoUpdate() 1052 string_concat(&z, zInsert, 1, &rc); in echoUpdate()
|
| H A D | shell.c.in | 5646 char *zInsert = 0; local 5664 zInsert = sqlite3_malloc64(200 + nTable + n*3); 5665 shell_check_oom(zInsert); 5666 sqlite3_snprintf(200+nTable,zInsert, 5668 i = strlen30(zInsert); 5670 memcpy(zInsert+i, ",?", 2); 5673 memcpy(zInsert+i, ");", 3); 5674 rc = sqlite3_prepare_v2(newDb, zInsert, -1, &pInsert, 0); 5740 sqlite3_free(zInsert);
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest_tdb.c | 639 const char *zInsert = "REPLACE INTO t1 VALUES(?, ?)"; in sql_open() local 669 || 0!=(rc = sqlite3_prepare_v2(pDb->db, zInsert, -1, &pDb->pInsert, 0)) in sql_open()
|
| /sqlite-3.40.0/test/ |
| H A D | threadtest3.c | 1316 const char *zInsert = "INSERT INTO t1 VALUES(:iRow, zeroblob(:iBlob))"; in cgt_pager_1_populate() local 1321 execsql(pErr, pDb, zInsert, &iRow, &iBlob); in cgt_pager_1_populate()
|