"Alexei Alexandrov" <[EMAIL PROTECTED]> wrote: > > A side note: from previous experience with some other DB engines I > know that sometimes alignment issues are not minor at all. They can be > deeply in on-disk format and sometimes it is difficult to avoid them > without having to change the on-disk format.
SQLite uses a byte-order and alignment independent on-disk format so that SQLite databases can be freely copied between machines with different processor and memory architectures. SQLite *never* stores an in-memory data structure directly to disk. So any alignment issues that might come up (and they do from time to time) are easily fixed. -- D. Richard Hipp <[EMAIL PROTECTED]>

