tags:

views:

202

answers:

2

I'm currently developing a Field-Service application that stores data in the local sqlite database on an android device. At some point, usually after completing the data collection rounds, the local sqlite db is to be synchronized to a remote sql server db on the server, also i need to update some local table from sql server db.

Any suggestions as to how this could be achieved or engineered as a solution? Or even better, are there alternatives to synchronizing data in such an application?

+2  A: 

See this post

Ardman
i saw it but you can give me more details ? please could you give me an example how to write the web service ? how to read my sql server db from android??
ameni
A: 

i solve the problem i used a servlet like in this blog http://jahbromo.blogspot.com/2010/07/android-connection-une-base-distante.html#comment-form

ameni