0

I want to know is it possible to directly save the sqlite database on the server.

if yes,How can I do this Please Help.

Arun Badole
  • 10,977
  • 19
  • 67
  • 96

1 Answers1

1

SQLite databases on android are private to the device. You can not choose their location either. They will always be stored in a directory under /data/data on your device. You can, however, copy it between locations as shown here.

Also, as SQLite is a "serverless" database, there's now way of using any "remote database".

Community
  • 1
  • 1
Thorsten Dittmar
  • 55,956
  • 8
  • 91
  • 139