|
|
|
|
|
by nlohmann
1465 days ago
|
|
Have you every played with SQLite virtual tables (https://sqlite.org/vtab.html) - they could allow to provide an SQLite interface while keeping the same structure on disk. Though it requires a bit of work (implementing the interface can be tedious), it can avoid the conversion in the first place. |
|
And there's this vtable for Parquet extension. https://github.com/cldellow/sqlite-parquet-vtable
But for my use case virtual would be too complicated.