|
|
|
|
|
by prirun
797 days ago
|
|
Continue reading that section: "Missing values at the end of the record are filled in using the default value for the corresponding columns defined in the table schema." If you have a table with 5 columns and you only insert the first 3 columns (based on create table column order) because the last 2 values are null or default, SQLite will only insert 3 type bytes in the header. However, if the first column (in create table order) is the one you omit, SQLite has to include its type byte, even if the value is null. |
|