I created a sqlite db in an external program in which I imported csv-files exported from an old Access97 database. Now I am using it with a B4J-server app.
I just realized that there is only one file db-file now. The files related to "wal" are not present.
I know that when creating the database within B4J, we can use
to add support.
Is it possible to add support, like in my case, to an existing database?
If not, I guess I will need to recreate everything from scratch (and from B4J) and then import the tables.
I just realized that there is only one file db-file now. The files related to "wal" are not present.
I know that when creating the database within B4J, we can use
B4X:
sqlite.ExecNonQuery("PRAGMA journal_mode = wal")
Is it possible to add support, like in my case, to an existing database?
If not, I guess I will need to recreate everything from scratch (and from B4J) and then import the tables.
Last edited: