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.