Lines Matching refs:zCreate
13152 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
13153 if( zCreate==0 ) continue; in idxProcessOneTrigger()
13154 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
24210 const char *zCreate = in arCreateOrUpdateCommand() local
24276 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
25572 char *zCreate = 0; /* CREATE TABLE statement text */ in do_meta_command() local
25717 zCreate = sqlite3_mprintf("CREATE TABLE %s", zFullTabName); in do_meta_command()
25733 sqlite3_free(zCreate); in do_meta_command()
25740 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in do_meta_command()
25742 oputf("%s\n", zCreate); in do_meta_command()
25744 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0); in do_meta_command()
25746 eputf("%s failed:\n%s\n", zCreate, sqlite3_errmsg(p->db)); in do_meta_command()
25749 sqlite3_free(zCreate); in do_meta_command()
25750 zCreate = 0; in do_meta_command()