You are not logged in Log in Join
You are here: Home » Members » jim » ZODB » zodb_record » wikipage_view

Log in
Name

Password

 
 
FrontPage » RelationalStorage » RelationalStorageTableStructures »

zodb_record

Table zodb_record

NameDescriptionStoringDb field type
oid OID binascii.b2a_base64 repr of oid CHAR(12) NOT NULL
serial Serial number binascii.b2a_base64 repr of serial CHAR(12) NOT NULL
prev Previous serial number binascii.b2a_base64 repr of prev serial for oid CHAR(12)
status Status code Single char status code used for nontransactional DBs? CHAR(1)
data Pickle data Arbitrary-length string BLOB or LONG RAW
datalen Integer length of pickle in bytes Integer length of pickle in bytes INTEGER
dataserial Serial number of record containing data for oid (used if data is null) binascii.b2a_base64 repr of a serial CHAR(12)

Compound primary key: (oid, serial)