Home | History | Annotate | Download | only in _sqlite

Lines Matching defs:lastrowid

103     self->lastrowid= Py_None;

140 Py_XDECREF(self->lastrowid);
462 PY_LONG_LONG lastrowid;
740 Py_DECREF(self->lastrowid);
743 lastrowid = sqlite3_last_insert_rowid(self->connection->db);
745 self->lastrowid = PyInt_FromLong((long)lastrowid);
748 self->lastrowid = Py_None;
1071 {"lastrowid", T_OBJECT, offsetof(pysqlite_Cursor, lastrowid), RO},