|
|
|
|
|
by da_chicken
1762 days ago
|
|
No, SQLite's dynamic data types would silently coerce data just like opening a CSV directly with Excel does. The advantage of CSV is that it's as accurate as your plain text representation of your data can be. Since binary data can be represented by character data, that's 100% accurate. As soon as you introduce a storage format that has made assumptions about the type of data being stored, you've lost flexibility. SQLite is not intended for data serialization. It's intended for data storage to be read back by essentially the same application in the same environment. |
|
I'd be satisfied if Excel was just a little less aggressive about it's data coercion on import.