SQLite in Mobile project

Wappler Version : 6.8.0
Operating System : MacOS 15
Server Model: -
Database Type: SQLite
Hosting Type: -

I have some issue when I want to add SQLite to my mobile project. When I add PageFlow which requires connection with SQLite, my content on page disappears.
I've noticed it is only when is added to . Do you have any idea what could be wrong?

With

When I remove

Content of wallet_db.js (created automatically):

dmx.databases = dmx.databases || {};
dmx.databases['wallet_db'] = {
  "version": 1,
  "upgrade": [
    {
      "toVersion": 1,
      "statements": [
        "create table `pass` (`id` integer not null primary key autoincrement)"
      ]
    }
  ]
}

I am using Capacitor and Framework 7 8.3.3 with App Connect. I did same scenario with Bootstrap project instead of Framework 7 and I got same result.

Do you see any errors in console?

Plese note:

No, I don't see any error. I did workaround proposed by @franse and it worked so for now I am satisfied with this.

Thanks @franse. I did workaround proposed by you in this post and it works.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.