-2

Possible Duplicate:
Android access to remote SQL database

I am going to make android app which has lots of database, can I put it (only database) on server & using my app can i access those database.

Community
  • 1
  • 1
Chaitanya
  • 7
  • 2

2 Answers2

0

Android default database is SQLIte. so use android default one then only you handle database easily. Please verify this url : http://developer.android.com/reference/android/database/sqlite/SQLiteOpenHelper.html

Sathish Kumar
  • 63
  • 1
  • 4
0

First you need to install a local server like WAMP on your system (if you are using windows). Download WAMP from www.wampserver.com/en/. according to your system configs.

If WAMP Server not installing properly and showing error message that msvcr100.dll file is missing then download the msvcr100.dll file from here and paste it in System32 folder of your system.

All steps for setting up the server and executing code in android are given nicely in this tutorial

Laksh
  • 6,717
  • 6
  • 33
  • 34