Searched refs:onError (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | insert.c | 95 int onError /* How to handle constraint errors */ 404 newIdx, -1, onError, endOfLoop) ){ 477 0, onError, endOfLoop); 499 onError, endOfLoop) ){ 607 ** Or if overrideError==OE_Default, then the pParse->onError parameter 608 ** is used. Or if pParse->onError==OE_Default then the onError value 630 int overrideError, /* Override onError to this if not OE_Default */ 636 int onError; local 657 onError [all...] |
H A D | copy.c | 37 int onError /* What to do if a constraint fails */ 93 0, onError, addr);
|
H A D | update.c | 27 * onError pTabList pChanges pWhere 34 int onError /* How to handle constraint errors */ 308 newIdx, oldIdx, onError, loopStart) ){ 322 if( onError==OE_Replace ){ 327 if( pIdx->onError==OE_Replace ){ 381 onError, loopStart); 417 newIdx, oldIdx, onError, loopStart) ){
|
H A D | build.c | 594 void sqliteAddNotNull(Parse *pParse, int onError){ argument 599 if( i>=0 ) p->aCol[i].notNull = onError; 683 void sqliteAddPrimaryKey(Parse *pParse, IdList *pList, int onError){ argument 712 pTab->keyConf = onError; 714 sqliteCreateIndex(pParse, 0, 0, pList, onError, 0, 0); 1480 int onError, /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ 1606 pIndex->onError = onError; 1647 if( onError!=OE_Replace || pTab->pIndex==0 1648 || pTab->pIndex->onError 1475 sqliteCreateIndex( Parse *pParse, Token *pName, SrcList *pTable, IdList *pList, int onError, Token *pStart, Token *pEnd ) argument 2022 sqliteBeginTransaction(Parse *pParse, int onError) argument [all...] |
H A D | sqliteInt.h | 356 u8 onError; /* Default conflict algorithm */ member in struct:sqlite 615 ** The Index.onError field determines whether or not the indexed columns 616 ** must be unique and what to do if they are not. When Index.onError=OE_None, 618 ** and the value of Index.onError indicate the which conflict resolution 628 u8 onError; /* OE_Abort, OE_Ignore, OE_Replace, or OE_None */ member in struct:Index
|
H A D | vdbeaux.c | 872 db->onError = OE_Default; 879 db->onError = OE_Default;
|
H A D | pragma.c | 442 sqliteVdbeAddOp(v, OP_Integer, pIdx->onError!=OE_None, 0);
|
H A D | main.c | 486 db->onError = OE_Default;
|
Completed in 63 milliseconds