Forum Discussion
- Marsha_R
Champion Level 3
This previous thread may be of some help:
- Archana_72Contributor
Hi,
Thanks for the reply.
This solution is to work with data source in local system.
I need to access the database which is in device app.
- AlexKaras
Champion Level 3
Hi,
As per quick google search (https://www.google.com/search?q=access+sqlite+over+network, https://www.codeproject.com/Questions/1166694/How-can-I-access-sqlite-DB-from-another-machine, https://dba.stackexchange.com/questions/21/is-it-possible-to-use-sqlite-as-a-client-server-database), SQLite is a file-based database not intended for the shared and/or network use.
If the above is correct, then your options are either to make a local copy from device and use it locally, or to use some provider from the device that can be queried over the network. However, the latter option sounds like client-server scenario and thus I am far not sure that it can be implemented.