Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c14070 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local
14071 if( zCreate==0 ) continue; in idxProcessOneTrigger()
14072 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger()
28186 const char *zCreate = in arCreateOrUpdateCommand() local
28252 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand()
29629 char *zCreate = 0; /* CREATE TABLE statement text */ in do_meta_command() local
29767 zCreate = sqlite3_mprintf("CREATE TABLE \"%w\".\"%w\"", in do_meta_command()
29785 sqlite3_free(zCreate); in do_meta_command()
29788 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in do_meta_command()
29789 if( zCreate==0 ){ in do_meta_command()
[all …]
H A Dsqlite3.c214483 char *zCreate = sqlite3_mprintf(
214491 if( !zCreate ){
214495 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0);
214496 sqlite3_free(zCreate);
216837 char *zCreate;
216855 zCreate = sqlite3_str_finish(p);
216856 if( !zCreate ){
216859 rc = sqlite3_exec(db, zCreate, 0, 0, 0);
216860 sqlite3_free(zCreate);