How to make changes to sqlite database for app that is installed in multiple devices?

user3794853

I started developing an app that uses sqlite that is to be installed on multiple devices and any updates done on sqlite database from any device are to be reflected in other devices as well. I have researched a little and found that Sqlite DB is local to a device and changes done in one device are not reflected in others and for that I have to use external server. Is there any way around it? Is it optimal to directly store data in external server or use sqlite and sync it regularly with external database? Thanks in advance

Bona Fide

As far as I know, there isn't a way without an external database. I would recommend you to sync it regularly with an external database.

Checkout this question for more information how to do that:

Answer of Andrew White

Create a webservice (REST is probably best) and serialize your SQLite/MySQL data and PUT/POST/GET it to/from your web service. This will give you a nice layer of abstraction in case you decide to switch from MySQL to something else server side.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Notify multiple Rails app when pgsql database changes

From Dev

How is the tongbu tui app able to be installed directly from the browser on non-jailbroken iOS devices?

From Dev

Detect changes on SQLite database for loader

From Dev

how to listen for SQLite database changes in android

From Dev

How to make live changes to SQL database

From Dev

How to share database between same application in multiple devices without server

From Dev

How to make my app look the same in all devices?

From Dev

How to share and sync android sqlite database across devices when they are updated?

From Dev

Single django app to use multiple sqlite3 files for database

From Dev

How to make changes once MEANJS app is deployed?

From Dev

How To Remotely Install Enterprise Android App on Multiple Devices

From Dev

How to make an emailed document form make changes to my local database?

From Dev

how to make database in sqlite through wizard in xcode and how to connect with database?

From Dev

how to copy existing database after app installed in android

From Dev

How to make the ScheduledTaskAgent start as soon as the app is installed?

From Dev

How to backup an iOS enterprise app and install on multiple devices

From Dev

On how many devices my iOS app is installed

From Dev

How to share database between same application in multiple devices without server

From Dev

how can i make my iphone app to Supporting Multiple iOS Versions and Devices in swift programmatically using device screen size

From Dev

How to make web app on small devices look like on desktop

From Dev

After updating my SQLite database columns via SQLite Manager, why are the changes not reflected in my Android App?

From Dev

How to erase SQLite database on restart of app?

From Dev

Find bluetooth devices with same app installed

From Dev

How to make the unity app search find a manually installed app

From Dev

How to make my SQLite database be saved and accessed from different devices

From Dev

How to make changes to Sqlite database with EF Core?

From Dev

Can't see SQLite database changes on a database open by multiple processes

From Dev

Notification to devices in an area without the use of an installed app

From Dev

How to ./configure or make with multiple GCC versions installed?

Related Related

  1. 1

    Notify multiple Rails app when pgsql database changes

  2. 2

    How is the tongbu tui app able to be installed directly from the browser on non-jailbroken iOS devices?

  3. 3

    Detect changes on SQLite database for loader

  4. 4

    how to listen for SQLite database changes in android

  5. 5

    How to make live changes to SQL database

  6. 6

    How to share database between same application in multiple devices without server

  7. 7

    How to make my app look the same in all devices?

  8. 8

    How to share and sync android sqlite database across devices when they are updated?

  9. 9

    Single django app to use multiple sqlite3 files for database

  10. 10

    How to make changes once MEANJS app is deployed?

  11. 11

    How To Remotely Install Enterprise Android App on Multiple Devices

  12. 12

    How to make an emailed document form make changes to my local database?

  13. 13

    how to make database in sqlite through wizard in xcode and how to connect with database?

  14. 14

    how to copy existing database after app installed in android

  15. 15

    How to make the ScheduledTaskAgent start as soon as the app is installed?

  16. 16

    How to backup an iOS enterprise app and install on multiple devices

  17. 17

    On how many devices my iOS app is installed

  18. 18

    How to share database between same application in multiple devices without server

  19. 19

    how can i make my iphone app to Supporting Multiple iOS Versions and Devices in swift programmatically using device screen size

  20. 20

    How to make web app on small devices look like on desktop

  21. 21

    After updating my SQLite database columns via SQLite Manager, why are the changes not reflected in my Android App?

  22. 22

    How to erase SQLite database on restart of app?

  23. 23

    Find bluetooth devices with same app installed

  24. 24

    How to make the unity app search find a manually installed app

  25. 25

    How to make my SQLite database be saved and accessed from different devices

  26. 26

    How to make changes to Sqlite database with EF Core?

  27. 27

    Can't see SQLite database changes on a database open by multiple processes

  28. 28

    Notification to devices in an area without the use of an installed app

  29. 29

    How to ./configure or make with multiple GCC versions installed?

HotTag

Archive