Searched refs:zCreate (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | shell.c | 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() [all …]
|
H A D | sqlite3.c | 209573 char *zCreate = sqlite3_mprintf( 209581 if( !zCreate ){ 209585 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); 209586 sqlite3_free(zCreate); 211914 char *zCreate; 211932 zCreate = sqlite3_str_finish(p); 211933 if( !zCreate ){ 211936 rc = sqlite3_exec(db, zCreate, 0, 0, 0); 211937 sqlite3_free(zCreate);
|