im sure, but honestly, i would love to have a db engine that just writes/reads csv or json. does it exist?
DuckDB can do exactly this, once you get the API working in your system, it becomes something simple like
SELECT \* from read_csv('example.csv');
COPY new_table TO 'example.csv' (HEADER true, DELIMITER ',');
I wrote a CSV DB engine once! I can't remember why. For fun?
SQLite can do it
DuckDB can do exactly this, once you get the API working in your system, it becomes something simple like
Writing generally involves reading to an in-memory database, making whatever changes you want, then something like