¿Cómo recibir datos de SQL Server a la aplicación de Android, de manera autónoma?
Frecuentes
Visto 969 veces
0
I have created a web service which, querying a SQL Server, retrives several tables. I'm consuming this web service using KSoap2 package in Android application, and I want maintain alligned the tables on SQL Server and tables on Android Application. Many of the tables in SQL Server remain the same over time, but some others change frequently. I need an automatic mechanism for update the tables on Android Application, on the initiative of Server. I think I need a socket on Android application, for listening a signal transmitted from SQL Server, the meaning of which is "the data in some tables are changed". So, then, I can use the web service call for retrieves new data. Is this possible? anyone has suggestions?
1 Respuestas
0
The answer for you question is a Android Service class. It can sit behind the program and listen to changes going on your SQL server and update it in SQLite database (or whatever you have)
Respondido 28 ago 12, 10:08
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas android sql-server database web-services auto-update or haz tu propia pregunta.
maybe not the best solution but ... you can try Ms Sync Framework y my Android implementation ... you can also use GCM to inform your application that data have change - Selvin