Searched refs:zCreate (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 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() [all …]
|
H A D | sqlite3.c | 211368 char *zCreate = sqlite3_mprintf( 211376 if( !zCreate ){ 211380 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); 211381 sqlite3_free(zCreate); 213722 char *zCreate; 213740 zCreate = sqlite3_str_finish(p); 213741 if( !zCreate ){ 213744 rc = sqlite3_exec(db, zCreate, 0, 0, 0); 213745 sqlite3_free(zCreate);
|