Searched refs:lastRowid (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A DvdbeInt.h51 Bool rowidIsValid; /* True if lastRowid is valid */
63 i64 lastRowid; /* Last rowid from a Next or NextIdx operation */ member in struct:VdbeCursor
120 i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ member in struct:VdbeFrame
H A Dvdbe.c3339 pC->lastRowid = iKey;
3642 pC->lastRowid = pIn3->u.i;
3795 v = db->lastRowid;
3905 if( pOp->p5 & OPFLAG_LASTROWID ) db->lastRowid = iKey;
3974 assert( pC->rowidIsValid ); /* lastRowid set by previous OP_NotFound */
3975 iKey = pC->lastRowid;
4134 v = pC->lastRowid;
4993 pFrame->lastRowid = db->lastRowid;
5794 db->lastRowid
[all...]
H A Dvdbeaux.c1570 v->db->lastRowid = pFrame->lastRowid;
2458 p->lastRowid = p->movetoTarget;
H A Dmain.c625 return db->lastRowid;
H A DsqliteInt.h777 ** The sqlite.lastRowid records the last insert rowid generated by an
779 ** trigger has its own context, so that lastRowid can be updated inside
781 ** exits. Upon entering a before or instead of trigger, lastRowid is no
789 ** context stack just like lastRowid so that the count of changes
817 i64 lastRowid; /* ROWID of most recent insert (see above) */ member in struct:sqlite3
2278 #define OPFLAG_LASTROWID 0x02 /* Set to update db->lastRowid */
/external/sqlite/dist/orig/
H A Dsqlite3.c10442 i64 lastRowid; /* ROWID of most recent insert (see above) */ member in struct:sqlite3
12031 #define OPFLAG_LASTROWID 0x02 /* Set to update db->lastRowid */
13934 u8 rowidIsValid; /* True if lastRowid is valid */
13944 i64 lastRowid; /* Rowid being deleted by OP_Delete */ member in struct:VdbeCursor
13998 i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ member in struct:VdbeFrame
68511 i64 lastRowid = db->lastRowid; /* Saved value of the last insert ROWID */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10442 i64 lastRowid; /* ROWID of most recent insert (see above) */ member in struct:sqlite3
12031 #define OPFLAG_LASTROWID 0x02 /* Set to update db->lastRowid */
13934 u8 rowidIsValid; /* True if lastRowid is valid */
13944 i64 lastRowid; /* Rowid being deleted by OP_Delete */ member in struct:VdbeCursor
13998 i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ member in struct:VdbeFrame
68531 i64 lastRowid = db->lastRowid; /* Saved value of the last insert ROWID */ local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9122 ** The sqlite.lastRowid records the last insert rowid generated by an
9124 ** trigger has its own context, so that lastRowid can be updated inside
9126 ** exits. Upon entering a before or instead of trigger, lastRowid is no
9134 ** context stack just like lastRowid so that the count of changes
9162 i64 lastRowid; /* ROWID of most recent insert (see above) */ member in struct:sqlite3
10623 #define OPFLAG_LASTROWID 0x02 /* Set to update db->lastRowid */
12265 Bool rowidIsValid; /* True if lastRowid is valid */
12277 i64 lastRowid; /* Last rowid from a Next or NextIdx operation */ member in struct:VdbeCursor
12334 i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */ member in struct:VdbeFrame
[all...]

Completed in 473 milliseconds