Searched refs:wrFlag (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree.c | 371 u8 wrFlag; /* True if writable */ member in struct:BtCursor 1003 ** If wrFlag==0, then the cursor can only be used for reading. 1004 ** If wrFlag==1, then the cursor can be used for reading or for 1009 ** 1: The cursor must have been opened with wrFlag==1 1011 ** 2: No other cursors may be open with wrFlag==0 on the same table 1018 ** on a table with wrFlag==0, that prevents all other cursors from 1020 ** is opened with wrFlag==0 it is guaranteed that the table will not 1024 ** be opened with wrFlag==0 only if this read-lock property is needed. 1025 ** That is to say, cursors should be opened with wrFlag==0 only if they 1027 ** should be opened with wrFlag 1035 fileBtreeCursor(Btree *pBt, int iTable, int wrFlag, BtCursor **ppCur) argument [all...] |
| H A D | btree.h | 54 int (*Cursor)(Btree*, int iTable, int wrFlag, BtCursor **ppCur); 119 #define sqliteBtreeCursor(pBt, iTable, wrFlag, ppCur)\ 120 (btOps(pBt)->Cursor(pBt, iTable, wrFlag, ppCur))
|
| H A D | btree_rb.c | 104 u8 wrFlag; /* True if this cursor is open for writing */ member in struct:RbtCursor 149 ** wrFlag==0 then this routine returns SQLITE_LOCKED. If all 150 ** cursors point to the same table were opened with wrFlag==1 154 ** means a cursor opened with wrFlag==0) this routine also NULLs 162 assert( pCur->wrFlag ); 165 if( p->wrFlag==0 ) return SQLITE_LOCKED; 709 * Get a new cursor for table iTable of the supplied Rbtree. The wrFlag 717 int wrFlag, 729 pCur->wrFlag = wrFlag; 714 memRbtreeCursor( Rbtree* tree, int iTable, int wrFlag, RbtCursor **ppCur ) argument [all...] |
| H A D | vdbe.c | 2386 int wrFlag; local 2397 wrFlag = pOp->opcode==OP_OpenWrite; 2416 rc = sqliteBtreeCursor(pX, p2, wrFlag, &p->aCsr[i].pCursor);
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 8029 int wrFlag, /* 1 for writing. 0 for read-only */ 47093 u8 wrFlag; /* True if writable */ member in struct:BtCursor 50958 btreeCursor( Btree *p, int iTable, int wrFlag, struct KeyInfo *pKeyInfo, BtCursor *pCur ) argument 51006 sqlite3BtreeCursor( Btree *p, int iTable, int wrFlag, struct KeyInfo *pKeyInfo, BtCursor *pCur ) argument 63073 int wrFlag; member in struct:vdbeExecUnion::OP_OpenWrite_stack_vars [all...] |
Completed in 148 milliseconds