Startseite › Foren › Deutsches LiveCode-Forum › Android kein Zugriff möglich › Antwort auf: Android kein Zugriff möglich
Dezember 3, 2019 um 18:26 Uhr
#17322
Hallo Klaus,
ich habe folgenden Code erstellt. Es gibt keine Fehlermeldung, aber ich kann immer noch nicht auf die Datenbank zugreifen. Die Datenbank Auto.db finde ich im Handy nicht im Dokumentenordner.
on openstack
if the environment is "mobile" then
set the fullscreenmode of me to "exactFit"
put specialFolderPath("resources") & "/auto.db" into tQuellDB
put specialFolderPath("documents") & "/auto.db" into tZielDB
if there is NOT a file tZielDB then
put url("binfile:" & tQuellDB) into url("binfile:" & tZielDB)
end if
put tZielDB into xpfd
else
put specialfolderpath("resources") & "/auto.db" into xpfd
end if
end openstack
Viele Grüße
Dieter