currently I am experimenting with using drizzle orm and tauri-plugin-sqlite but I am running into a lot of issues because there is no official adapter for the sqlite driver, I am wondering how people use the sqlite plugin, I want an orm for type safety so I have two options
- Continue using drizzle and figure out a way to expose the sqlite database over http
- Use something like diesel on the rust side and expose the data via commands
There are obvious pros and cons to each solution but I am wondering if anyone here has experience with one of those approaches