Lines Matching refs:zCreate
13231 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
13232 if( zCreate==0 ) continue; in idxProcessOneTrigger()
13233 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
25474 const char *zCreate = in arCreateOrUpdateCommand() local
25540 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
26909 char *zCreate = 0; /* CREATE TABLE statement text */ in do_meta_command() local
27043 zCreate = sqlite3_mprintf("CREATE TABLE \"%w\".\"%w\"", in do_meta_command()
27063 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in do_meta_command()
27064 if( zCreate==0 ){ in do_meta_command()
27069 oputf("%s\n", zCreate); in do_meta_command()
27071 rc = sqlite3_exec(p->db, zCreate, 0, 0, 0); in do_meta_command()
27072 sqlite3_free(zCreate); in do_meta_command()
27073 zCreate = 0; in do_meta_command()
27075 eputf("%s failed:\n%s\n", zCreate, sqlite3_errmsg(p->db)); in do_meta_command()