tags:

views:

34

answers:

1

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

+1  A: 

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.

Jonas