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