Lines Matching refs:zCreate
14070 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
14071 if( zCreate==0 ) continue; in idxProcessOneTrigger()
14072 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
28186 const char *zCreate = in arCreateOrUpdateCommand() local
28252 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
29629 char *zCreate = 0; /* CREATE TABLE statement text */ in do_meta_command() local
29767 zCreate = sqlite3_mprintf("CREATE TABLE \"%w\".\"%w\"", in do_meta_command()
29785 sqlite3_free(zCreate); in do_meta_command()
29788 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in do_meta_command()
29789 if( zCreate==0 ){ in do_meta_command()
29794 sqlite3_fprintf(p->out, "%s\n", zCreate); in do_meta_command()
29796 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0); in do_meta_command()
29799 "%s failed:\n%s\n", zCreate, sqlite3_errmsg(p->db)); in do_meta_command()
29801 sqlite3_free(zCreate); in do_meta_command()
29802 zCreate = 0; in do_meta_command()