Web App on Windows Stanton with sqlite

Hi (XOJO 2019 r1.1)
I have one app run on my xojo perfect but when i copy the app to windows and run it i have error msg db table no found ?

Hi,
You could maybe start by giving some details…

  • what kind of db ?
  • where is it located ?
  • how and when do you open it ?
  • stand-alone or cgi ?
  • if cgi, what’s your webserver ?
  • etc, etc

what kind of db = sqlite
where is it located =C:\app
stand-alone or cgi ? = stand-alone windows server

1- is the db file copied also to the server?
2- can you show the code that opens the db folderitem? It could be that the built application is not looking where you expect it to look for the db file. If for example you are using the “Documents” folder to keep the db file and run the program under a different userid then the program will be looking in the wrong “documents” folder.

My guess is that your answer is in @Louis Desjardins point 2.
Find a way to debug your app (msgbox, system.debuglog …) and check the path of your folderitem and compare with the real db location.

ok
thanks