Searched refs:zCreate (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 16081 const char *zCreate = (const char*)sqlite3_column_text(pSelect, 0); in idxProcessOneTrigger() local 16082 if( zCreate==0 ) continue; in idxProcessOneTrigger() 16083 rc = sqlite3_exec(p->dbv, zCreate, 0, 0, pzErr); in idxProcessOneTrigger() 30342 const char *zCreate = in arCreateOrUpdateCommand() local 30408 rc = arExecSql(pAr, zCreate); in arCreateOrUpdateCommand() 31048 char *zCreate = 0; /* CREATE TABLE statement text */ in dotCmdImport() local 31228 zCreate = sqlite3_mprintf("CREATE TABLE \"%w\".\"%w\"", in dotCmdImport() 31245 sqlite3_free(zCreate); in dotCmdImport() 31248 zCreate = sqlite3_mprintf("%z%z\n", zCreate, zColDefs); in dotCmdImport() 31249 if( zCreate==0 ){ in dotCmdImport() [all …]
|
| H A D | sqlite3.c | 219548 char *zCreate = sqlite3_mprintf( local 219556 if( !zCreate ){ 219560 rc = sqlite3_exec(pRtree->db, zCreate, 0, 0, 0); 219561 sqlite3_free(zCreate); 221902 char *zCreate; local 221920 zCreate = sqlite3_str_finish(p); 221921 if( !zCreate ){ 221924 rc = sqlite3_exec(db, zCreate, 0, 0, 0); 221925 sqlite3_free(zCreate);
|