-
|
I would like to save relative big JSON in the Database and thought about doing so with the BLOB type, but that does not work in my tests in a browser. Any hints? I would like to avoid just saving the From my search I saw that jeep-sqlite uses only |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Ok, my bad, I placed the execution part before the initialization part so the Database wasn't ready. For anyone else, just use: new TextEncoder().encode(JSON.stringify(value)) |
Beta Was this translation helpful? Give feedback.
-
|
So, just |
Beta Was this translation helpful? Give feedback.
So, just
JSON.stringify(value)is enough