Hacker News new | ask | show | jobs
by bob1029 1773 days ago
> Parsing (not validating) at the edges should take care of it.

Precisely. We use a tiny ORM on top of Dapper to make sure everything goes in and out of columns as expected.

1 comments

How is isolation important to use SQLite?

Edge does not provide safety to every database modifications like manually editing data and you're screwed already.

We never allow for manual edits of live SQLite databases. Everything happens through code.

If someone wants to play around with a SQLite database from production, we just copy the file and hand it to them. That's kinda the whole point IMO.