I am developping in Windows and i am trying to create the standalone for MacOs...
And i have one problem with the database...There is one error to connect to the database from the application in MacOs...

this is the path of my application (myApplication.Livecode) where i am developping: "C:/users/fko/Lc/TestApp"
And i have one database (myDatabase.sqlite) into the folder BBDD...So the complete path is the next one: "C:/users/fko/Lc/TestApp/BBDD/myDatabase.sqlite"
When i am making the standalone i am choosing the folder "TestApp" ( the complete path is: "C:/users/fko/Lc/TestApp") to create the versión for MacOs
The result is that i have one new folder ("myApplication") in "C:/users/fko/Lc/TestApp/"...So i have "C:/users/fko/Lc/TestApp/myApplication"
and inside this folder i have another one ("myApplication.app") ..."C:/users/fko/Lc/TestApp/myApplication/myApplication.app"
After one day trying things, i decide to write the path of the application in the script where i am conncecting to the database to control where is trying to open the database.
In the script of the database connection i have this:
put myPath & "/BBDD/myDatabase.sqlite" into tDatabasePath
answer tDatabasePath
put revOpenDatabase ("sqlite",tDatabasePath,,,,) into tDatabaseID
This is the result of the answer: "/mac/applications/myApplication/myApplication.app/Content/DDBB/myDatabase.sqlite"
And in the OpenCard Script i have this:
global myPath
"put the effective filename of this stack into myPath"
answer myPath....This is the result of the answer: "/mac/applications/myApplication/myApplication.app"
What is the problem? What am i doing wrong? For Windows is working well the path for the database...
Do i have to change my script of database connection?
As i am not putting in any place the folder "Content"...
It should be like this : "put myPath & "/Content/BBDD/myDatabase.sqlite" into tDatabasePath" in place of "put myPath & "/BBDD/myDatabase.sqlite" into tDatabasePath"?
Or there is another thing that i am not seeing or not taking in consideration to can pass from Windows to MacOs?
Regards,
fko