database connectivity from another system.
Solved
General and Desktop
-
wrote on 3 Mar 2018, 05:19 last edited by
I would like to connect(fetch) the database from another system to my system in windows 10 using sqlite. How to proceed further ?
-
wrote on 3 Mar 2018, 05:33 last edited by
design your own data transfer protocol, for detail:
- client send a request packet to server for data
- server query sqlite for data
- server send a response packet (with data requested) to client
-
Hi,
In addition to what @jronald suggested (which is a REST web service setup), SQLite is a file based database so you don't connect to it remotely like you could with a networked database system (e.g. PostgreSQL, MySQL, etc.).
What is your exact setup ?
-
wrote on 8 Mar 2018, 09:02 last edited by
I have connected using the MicrosoftSQLExpress software. Its working...
1/4