Home
last modified time | relevance | path

Searched refs:zCreate (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c16043 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
16044 if( zCreate==0 ) continue; in idxProcessOneTrigger()
16045 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
30279 const char *zCreate = in arCreateOrUpdateCommand() local
30345 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
30985 char *zCreate = 0; /* CREATE TABLE statement text */ in dotCmdImport() local
31165 zCreate = sqlite3_mprintf("CREATE TABLE \"%w\".\"%w\"", in dotCmdImport()
31182 sqlite3_free(zCreate); in dotCmdImport()
31185 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in dotCmdImport()
31186 if( zCreate==0 ){ in dotCmdImport()
[all …]
H A Dsqlite3.c219173 char *zCreate = sqlite3_mprintf( local
219181 if( !zCreate ){
219185 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0);
219186 sqlite3_free(zCreate);
221524 char *zCreate; local
221542 zCreate = sqlite3_str_finish(p);
221543 if( !zCreate ){
221546 rc = sqlite3_exec(db, zCreate, 0, 0, 0);
221547 sqlite3_free(zCreate);