SQlite3 database

What I’m trying to do:
I have a very general question: is it possible to have an app running offline, on an ipad for example, and have data stored locally on an SQlite3 database?
I am not looking for specifics but just wanted to know whether it is a viable option.
Thanks in advance

If the app runs offline, then you are restricted to the browser resources. This means that you can’t use SQLite, but you can use local storage, a key/value storage available in the browser.

In Anvil Extras there is a library for it: Storage — Anvil Extras documentation

1 Like

Thank you for explaining. I will have a look at that documentation.