Replies: 3 comments 1 reply
-
OK! I refactored a bunch of things for 5.2 (Postgres support!) and iight be able to use that to your advantage. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Tracked as issue #168 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Closed out in beta 5 - wanna check it out? #168 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use Tinybase with Tauri. I can store my data as a simple custom persister that saves a JSON of the Tinybase store, but that has a bigger overhead as I'd be writing/reading the entire data at every operation.
Instead, I'd like to leverage SQLite's smartness via Tauri's SQL plugin. From reading the sqlite persisters' code, I can see it leverages an internal
createSqlitePersister
, which I imagine could handle tauri/sql'sdb.execute
(syntax from sqlx)?As that's an internal module, I can't access it, and it's too tied into the repo to simply copy and paste, so I haven't tried it yet - could it work? 🤔
Beta Was this translation helpful? Give feedback.
All reactions