Einzelnen Beitrag anzeigen

Benutzerbild von luisk
luisk

Registriert seit: 18. Mär 2009
402 Beiträge
 
#6

AW: Android FireDac SQLite: "attempt to write a read only database"

  Alt 21. Jun 2016, 12:57
Hier hab ich etwas dazu gefunden
http://stackoverflow.com/questions/1...-database-mode
If using Android.
Make sure you have added the permission to write to your EXTERNAL_STORAGE to your AndroidManifest.xml.
Add this line to your AndroidManifest.xml file above and outside your <application> tag.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_ST ORAGE"/>
This will allow your application to write to the sdcard. This will help if your EXTERNAL_STORAGE is where you have stored your database on the device.

Wie komme ich an dieses AndroidManifest.xml.
  Mit Zitat antworten Zitat