MarGa
MarGa

Reputation: 731

Mobile application: exchange data between SQLite and SQL Server 2008

I'm asked to create a mobile application that loads regulary data from an sql server 2008 and puts it in the local db SQLite and sends it as well. Being a newbie in mobile development i don't even know how to procede. I would be gratefull if anyone leads me or gives me tips. Thanks in advance.

Upvotes: 0

Views: 447

Answers (1)

Yaqub Ahmad
Yaqub Ahmad

Reputation: 27659

You need a WebService so you can communicate with the DataBase Server & the Android Device.

Develop a Web Service: It should have the logic to fetch data from the Database-Server & Back to Database-Server.

On Android side you can use KSoap to consume the web service. See this example here.

Upvotes: 1

Related Questions