0

Just wondering whether it's possible to directly access a SQLite database on the network from Android?

kakopappa
  • 5,023
  • 5
  • 54
  • 73

2 Answers2

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.

Android + MySQL using com.mysql.jdbc.Driver

Community
  • 1
  • 1
kakopappa
  • 5,023
  • 5
  • 54
  • 73