Just wondering whether it's possible to directly access a SQLite database on the network from Android?
Asked
Active
Viewed 1,618 times
0
-
1Why do you want to do that? I would avoid such design. – Kaj Jul 22 '11 at 11:38
-
its a simple application. one data entry form that's all – kakopappa Jul 22 '11 at 11:42
-
@kakopappa, Have you found solution for this? with Sqlite? – Srusti Thakkar Mar 05 '18 at 10:07
2 Answers
2
No, I don't think it is possible directly. You can host some kind of service on the network. Call/Access that service from android and pass it the data you want to store in a database. That service would be responsible for storing data on android's behalf in network database.

Haris Hasan
- 29,856
- 10
- 92
- 122
-1
Apparently there is a way you can connect to MySQL using mysql-jdbc-driver.