Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a android framework. I implemented an system server which works fine, i.e., a sample application can communicate with the service. Now i want my server to be able to read and write data into a file or sqlite like database. I am pretty new to android framework development so i am not sure how this works. Any help is greatly appreciated.

share|improve this question
In what language will you write your server? If in Java, put the "Java" tag on your question. If in php, put the "PHP" tag on your question. etc. – Christine Oct 16 '12 at 21:34
I am not sure you are following . I wrote an aidl interface to implement a system service and then wrote java code to support it. We are talking android framework here its mostly java and especially not php . – Bhanu Kaushik Oct 17 '12 at 4:35
Ah, you have built an android service. to me, "server" means a server, not a service. – Christine Oct 18 '12 at 11:17

2 Answers

To handle database in Android (to store some apps/service data) you should use ContentProviders class.

There is a great tutorial on developer.android.com pages: Content Providers http://developer.android.com/guide/topics/providers/content-providers.html and its subchapters:

  • Content Provider Basics (how to use already exising Android database)
  • Creating a Content Provider (how to create new sql database and simple interface to access it)

There is also Note Pad sample application in android SDK samples (on harddrive /samples/android-/ - http://developer.android.com/tools/samples/index.html). Please take a look at class NotePadProvider (com.example.android.notepad) in this sample app.

BR Paweł Rutkowski

PS. I think that this question was not answered for so long because title is misleading - it should more about storing user/app configuration in Android or about using sql database in Android.

share|improve this answer
Thanks. for the reply. But i believe the question was straight forward. I was not talking about how to do this on android application (or services within the application). The question was how to modify or handle this in android OS itself.Thanks for help anyway – Bhanu Kaushik Feb 15 at 16:23

Using the standard android sqlite database in a service is identical to using it from an activity. The android documentation and the samples show you how to do that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.