some clarifications
This commit is contained in:
parent
a7260d40b3
commit
f5649c798b
1 changed files with 3 additions and 3 deletions
|
|
@ -52,9 +52,9 @@ fn test_build() -> Result<(), Error> {
|
||||||
**Be aware**
|
**Be aware**
|
||||||
* The schema and the actual data don't have to match! But that is how SQLite itself also works, pretty much.
|
* The schema and the actual data don't have to match! But that is how SQLite itself also works, pretty much.
|
||||||
* And: 2 records in the same table can contain values of totally different types(!). The number of values can also vary. All perfectly legal from the standpoint of Sqlighter.
|
* And: 2 records in the same table can contain values of totally different types(!). The number of values can also vary. All perfectly legal from the standpoint of Sqlighter.
|
||||||
And maybe not when writing to Sqlite itself, but perfectly readable!
|
And maybe not when writing to SQLite itself (using sql), but perfectly readable from the file.
|
||||||
* unittest SchemaCreationTests is proof of this.
|
|
||||||
|
|
||||||
|
|
||||||
**Current status**
|
**Current status**
|
||||||
* It works for tables of any size, but probably not for indexes (may skip that feature) because you can always add them client-side(!)
|
* It works for tables of any size. Indexes are not supported, but you can always add them client-side.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue