aeric Expert Licensed User Longtime User Feb 28, 2022 #1 When I set a new list of data to a B4Xtable, I get the logs. B4X: closing old db. B4X: B4XTable.SetData(List) What is the log means? Can I disable it?
When I set a new list of data to a B4Xtable, I get the logs. B4X: closing old db. B4X: B4XTable.SetData(List) What is the log means? Can I disable it?
Solution DonManfred Feb 28, 2022 aeric said: Can I disable it? Click to expand... Look at the source of this b4xlib (it is a zip). Edit it (remove the log-call).
aeric said: Can I disable it? Click to expand... Look at the source of this b4xlib (it is a zip). Edit it (remove the log-call).
jahswant Well-Known Member Licensed User Longtime User Feb 28, 2022 #2 At every SetData call a new database is created with a new table corresponding to your b4xtable fields definition. I think it’s logical that it closes the old db before. Upvote 0
At every SetData call a new database is created with a new table corresponding to your b4xtable fields definition. I think it’s logical that it closes the old db before.
DonManfred Expert Licensed User Longtime User Feb 28, 2022 #3 aeric said: Can I disable it? Click to expand... Look at the source of this b4xlib (it is a zip). Edit it (remove the log-call). Upvote 0 Solution
aeric said: Can I disable it? Click to expand... Look at the source of this b4xlib (it is a zip). Edit it (remove the log-call).