san6086
san6086

Reputation: 469

Storing data from Android mobile into a Database

I am building an application where in I need to take the data (say inbox message) from an Android mobile phone store it in any database and then use the data from DB. Here I want the data from Android mobile to be directly stored in any DB. Can any one come out with a good idea?

Upvotes: 1

Views: 368

Answers (1)

Jonas
Jonas

Reputation: 128807

You can either use the SQLite database in Android or send the data to a webservice, where you store the data in a database on the server.

Upvotes: 1

Related Questions