withoutRowid property
True for CREATE TABLE ... WITHOUT ROWID. Affects how the table is
serialized into the SQLite file format (stored as an INDEX B-tree
keyed by the PK record, not as a rowid table). The in-memory engine
stores rows the same way regardless.
Implementation
bool withoutRowid;