How to connect to a SQLite on network from Android?
Just wondering whether开发者_运维问答 it's possible to directly access a SQLite database on the network from Android?
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.
Apparently there is a way you can connect to MySQL using mysql-jdbc-driver.
Android + MySQL using com.mysql.jdbc.Driver
精彩评论