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

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h221 int lastRowid; /* Last insert rowid (from db->lastRowid) */ member in struct:Context
H A DsqliteInt.h329 ** The sqlite.lastRowid records the last insert rowid generated by an
331 ** trigger has its own context, so that lastRowid can be updated inside
333 ** exits. Upon entering a before or instead of trigger, lastRowid is no
341 ** context stack just like lastRowid so that the count of changes
365 int lastRowid; /* ROWID of most recent insert (see above) */ member in struct:sqlite
952 #define OPFLAG_LASTROWID 2 /* Set to update db->lastRowid */
H A Dvdbe.c2949 if( pOp->p2 & OPFLAG_LASTROWID ) db->lastRowid = pNos->i;
3894 p->contextStack[p->contextStackDepth - 1].lastRowid = p->db->lastRowid;
3909 p->db->lastRowid = p->contextStack[p->contextStackDepth].lastRowid;
H A Dmain.c548 return db->lastRowid;

Completed in 32 milliseconds