Post #2366533
2026-05-10 19:58 UTC
In my case, I want to use sqlite locally, for development, but I don’t want to add a load of jank to handle booleans for sqlite.
Replies (3)
-
@nilloc@discuss.tchncs.de 2026-05-10 21:07
That’s what I like about Ruby ORMs. They did all the conversion for you, and you could have SQLite on your dev box, Postgres on the test server and MySQL on the annoying production host that wouldn’t run anything else. This was 18 years ago though.
-
@RustyNova@lemmy.world 2026-05-10 21:48
I use rust’s SQLx which map bools to numbers so it must be a problem with your connector maybe
-
@qevlarr@lemmy.world 2026-05-11 06:04
This is sqlite’s intended use case. To replace configure files and local data