Home
last modified time | relevance | path

Searched refs:zCreate (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dshell.c10543 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
10544 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
17715 const char *zCreate = in arCreateOrUpdateCommand() local
17781 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
19540 char *zCreate = sqlite3_mprintf("CREATE TABLE \"%w\"", zTable); in do_meta_command() local
19543 zCreate = sqlite3_mprintf("%z%c\n \"%w\" TEXT", zCreate, cSep, sCtx.z); in do_meta_command()
19548 sqlite3_free(zCreate); in do_meta_command()
19554 zCreate = sqlite3_mprintf("%z\n)", zCreate); in do_meta_command()
19556 utf8_printf(p->out, "%s\n", zCreate); in do_meta_command()
19558 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0); in do_meta_command()
[all …]
H A Dsqlite3.c194992 char *zCreate = sqlite3_mprintf(
195000 if( !zCreate ){
195004 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0);
195005 sqlite3_free(zCreate);
197484 char *zCreate;
197502 zCreate = sqlite3_str_finish(p);
197503 if( !zCreate ){
197506 rc = sqlite3_exec(db, zCreate, 0, 0, 0);
197507 sqlite3_free(zCreate);