Connecting to MySQL database


SDK Version: 
M3
The most spread method to connect to a remote MySQL database from an android device, is to put some kind of service into the middle. Since MySQL is usually used together with PHP, the easiest and most obvious way to write a PHP script to manage the database and run this script using HTTP protocol from the android system. mysql logo

We can code the data in JSON format, between Android and PHP with the easy to use built in JSON functions in both languages.

I present some sample code, which selects data from a database depending on a given condition and creates a log message on the android side with the received data.

Lets suppose that we have a MySQL database named PeopleData, and a table int created, with the following SQL:

  1. CREATE TABLE `people` (
  2. `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
  3. `name` VARCHAR( 100 ) NOT NULL ,
  4. `sex` BOOL NOT NULL DEFAULT '1',
  5. `birthyear` INT NOT NULL
  6. )

We want to get all the data of the people, who were born after a specified year.
The PHP code will be very simple:
- connect to the database
- run an SQL query, with a WHERE block depending on data from POST/GET values
- output it in JSON format

For example we will have this functionality in the getAllPeopleBornAfter.php file:

  1. <?php
  2. mysql_connect("host","username","password");
  3. mysql_select_db("PeopleData");
  4.  
  5. $q=mysql_query("SELECT * FROM people WHERE birthyear>'".$_REQUEST['year']."'");
  6. while($e=mysql_fetch_assoc($q))
  7.         $output[]=$e;
  8.  
  9. print(json_encode($output));
  10.  
  11. mysql_close();
  12. ?>

The Android part is only a bit more complicated:
-use a HttpPost to get the data, sending the year value
-convert response to string
-parse JSON data, and use it as you want

  1. String result = "";
  2. //the year data to send
  3. ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
  4. nameValuePairs.add(new BasicNameValuePair("year","1980"));
  5.  
  6. //http post
  7. try{
  8.         HttpClient httpclient = new DefaultHttpClient();
  9.         HttpPost httppost = new HttpPost("http://example.com/getAllPeopleBornAfter.php");
  10.         httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
  11.         HttpResponse response = httpclient.execute(httppost);
  12.         HttpEntity entity = response.getEntity();
  13.         InputStream is = entity.getContent();
  14. }catch(Exception e){
  15.         Log.e("log_tag", "Error in http connection "+e.toString());
  16. }
  17. //convert response to string
  18. try{
  19.         BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
  20.         StringBuilder sb = new StringBuilder();
  21.         String line = null;
  22.         while ((line = reader.readLine()) != null) {
  23.                 sb.append(line + "\n");
  24.         }
  25.         is.close();
  26.  
  27.         result=sb.toString();
  28. }catch(Exception e){
  29.         Log.e("log_tag", "Error converting result "+e.toString());
  30. }
  31.  
  32. //parse json data
  33. try{
  34.         JSONArray jArray = new JSONArray(result);
  35.         for(int i=0;i<jArray.length();i++){
  36.                 JSONObject json_data = jArray.getJSONObject(i);
  37.                 Log.i("log_tag","id: "+json_data.getInt("id")+
  38.                         ", name: "+json_data.getString("name")+
  39.                         ", sex: "+json_data.getInt("sex")+
  40.                         ", birthyear: "+json_data.getInt("birthyear")
  41.                 );
  42.         }
  43. }
  44. }catch(JSONException e){
  45.         Log.e("log_tag", "Error parsing data "+e.toString());
  46. }

Of course it is possible to use HTTPS and send password to access data, or do more complex data processing on either side, or write more general code, which

does not include this much predefined parameters in the database accessing query.

Comments

The result i got is not the desired.. can u help
Download Video Song

Rugby World Cup 2011 Live Streaming

Kreditkarten im Vergleich.
Eine kostenlose Kreditkarte testen.
Wie Kreditkarten funktionieren.

I really loved reading your blog. It was very well authored and easy to undertand. Unlike additional blogs I have read which are really not tht good. I also found your posts very interesting. In fact after reading, I had to go show it to my friend and he ejoyed it as well.Park Hotel Brno

I really loved reading your blog. It was very well authored and easy to undertand. Unlike additional blogs I have read which are really not tht good. I also found your posts very interesting. In fact after reading, I had to go show it to my friend and he ejoyed it as well.Park Hotel Brno

I ran into this page mistakenly, surprisingly, this is a great website.The site owner has carried out a superb job of putting it together, the info here is really insightful. Now i am going to bookmark this internet site so that I can revisit in the future Jobs.
CCNA Salary

Ein Smartphone testen.
Wie der Kreditrechner funktioniert.

Good post. Very impressive. Thanks for sharing.
wenger backpack

Online pharmacy gives a good service against local pharmacy because last few years people have tendency towards online. There are many reasons behind this factor like:
• Online pharmacy provides cheap and low rates medicines.
• Quality wise and standard medicines due to competition
• Online pharmacy cut traveling cost
• Save time
• Free prescriptions
• Privacy policy
http://www.mycarepharmacy.com

such a wonderful post, i got useful info from this post and i like the readers comments. Thanks for sharing this post to us. Thanks

buy Vicodin online

There are two common reasons women develop blocked fallopian tubes and there are several advanced surgical procedures which can correct or reverse tubal blockage and allow a woman to become pregnant again...
For more information you can visit: mybabydoc.com

Tubal Reversals | Tubal Reversal Surgery

Excellent info on 'Connecting to MySQL database'. Even I was in searching for the same resource. I found excellent info on this specific topic. Hope you guys update the posts frequently.

Joomla Developer | Joomla Web Developer

Such a cool format while making an Android apps. The JSON format can increase the security and that's why developers are establishing connection between SQL database and Android core management. I really appreciated this concepts and programming scripts above because now after the salvation of the old process, I can build up new Charlotte accountant apps for the Android OS.

I really enjoy reding your posts as I learn a lot from them I also broaden my thinking as far as what I can useand do with things.Luxury Accommodation

I just bought an android, your article will going to be really helpful for my gadget. Thank you very much.Bay Area Events

Nice movie list! Pinoy din ako! Sana mabisita mo din ang lenses ko. Salamat!.Vermögensverwaltung

Hi. Useful information, many thanks to the author. It is puzzling to me now, but in general, the usefulness and importance is overwhelming.series 56 exam

Great post!! Keep up the good work - I'm sure someday soon, someone will be doing an Ada Lovelace post about you.Tarif Vergleich

Thank you for such a fantastic blog. Where else could anyone get that kind of info written in such a perfect way? I have a presentation that I am presently working on, and I have been on the look out for such information, and I many Thank to you.Nanoversiegelung

Sometimes we are very concerned about our health, do not understand what to do. It is very easy to make better health. we use natural vitamin supplements. Vitamins function in many metabolic reactions that occur in foods used in the body, organic multivitamin for women , vitamins control and energy metabolism of our body.

Error in http connection java.net...
tel me what is the problem....

I am getting this log Error;

Error in http connection java.net...
tel me what is the problem...

mysql has always been a great help for me when configuring my website. This guide has also given me some valuable tips to widen my skills. Thanks!

Chicago Home Builder

Thanks for this great tip....

Nikmaya John

freindzone

منتدى سعودي كام
منتديات سعودي كول
منتدى سعودي كول
منتديات سعودي كام
منتدى سعودي
منتديات سعودية
منتدى ثقافي
منتديات اسلامي
منتدى ترفيهي
منتديات تعارف
منتدى سعودي كام
منتديات سعودي كام
منتدى سعودي كام
منتديات سعودي كام
المنتدى الــعـــام للمواضيــع العامــة
القسم الاسلامي - Islamic Section
منتدى الاسرة
أدب وفنون
مكتبة الافلام العربية والأجنبية Movies Library
الضحك والمقالب والترفيه - Laughs And Jokes
منتدى اخبار العالم
الصور وغرائب العالم - Photos, Pictures Section
جمال و أناقة و مستحضرات تجميل وازياء
منتدى تطوير المواقع
منتدى المجلات الإلكترونيه وبرامج إدارة المحتوى
منتدى ركـــن لغــــــــات البرمجـــــــــــه
منتدى تقنيات المواقع SEO و XML و RSS و محركات البحث
منتدى تطوير المنتديات
منتدى تطويــر المنتديــات العربيــه
منتدى استايلات النسخــه الثالثـــة
منتدى هاكات في بي 3.8.0 وأحدث
شروحات وخواص الفي بي
منتدى الجوالات العام
منتدى برامج الجوال
منتدى ثيمات وخلفيات الجوال
الرسائل المصورة ورسائل والمسجات و الـ MMS & SMS
خاص ببرامج التصميم الجرافكس - Design graphics
معرض تصاميم وإبـــداع الأعضــاء
خاص ببرامج التصميم الفلاش و السويش- Design graphics Flash and Swish
منتدى صوتيات وفيديو
منتدى الدروس العامـة في عــالم التصميــم
منتدى القوالب والتصاميم الجاهزه
دليل مواقع سعودي كام
منتدى عروض شركات الاستضافة
منتدى التبادل الإعلاني والتجاري
برامج الكمبيوتر والانترنت - Computer and Int
منتدى البرامــج العامــة المشروحة
الألعاب والتسالي
قسم القنوات الفضائية General Satellite Discussions
القسم الرياضي العام - General sports section
الكرة الإسبانية - Spanish soccer
الكرة الإيطالية - Italian Soccer
سيارات ودراجات
الطبخ - سعودي كام
البرامج برامج سعودي كام
القصص قصص سعودي كام
مسجات الجوال مسجات سعودي كام
عالم حواء سعودي كام
المقالات مقالات سعودي كام
تفسير الأحلام سعودي كام
مكتبة الكتب كتب سعودي كام
الدليل دليل سعودي كام
سعودي كام بلس
الموسوعة الجغرافية سعودي كام
الالعاب العا ب سعودي كام
التاريخ الاسلامي سعودي كام
موسوعة هل تعلم سعودي كام
الثقافة الجنسية سعودي كام
توبيكات سعودي كام
ترجمة النصوص سعودي كام
الثقافة الجنسية سعودي كام
سعودي كول666
سعودي كول9999
دليل روابط سعودي كام
قوانين سعودي كام
اختصارات سعودي كام
شات صوتي
المشاكل والحلول
اشتراكات سعودي كام
اعلانات سعودي كام
سعودي كام
سعودي كام
كام سعودي
سعودي كول
سعودي كول بلس
شات سعودي كول
دردشة سعودي كول
سعودي انحراف
سعودي لايف
سعودي اح
شات سعودي انحراف
شات سعودي لايف
دردشة سعودي اح
دردشة سعودي انحراف
دردشة سعودي لايف
شات سعودي اح
دردشة صوتية
دردشة سعودي كام
شات صوتي
شات سعودي كام
سعودي لايف
سعودي انحراف
سعودي اح
شات صوتي
دردشة صوتية
سعودي كول 2010
سعودي كول 2011
سعودي كول 6666
دردشة سعودي كول
شات سعودي كول
سعودي انحراف
دردشة سعودي انحراف
شات سعودي انحراف
966
سعودي كام
دردشة سعودي كام
شات سعودي كام
سعودي كام
دردشة سعودي كام
شات سعودي كام
سعودي كول
سعودي كول 2010
سعودي كول 2011
سعودي كول 6666
دردشة سعودي كول
شات سعودي كول
سعودي انحراف
منتدى
سعودي لايف
سعودي انحراف
سعودي اح
شات صوتي
دردشة صوتية
دليل سعودي كام
ددليل مواقع
شات سعودي انحراف
966
سعودي كام
دردشة سعودي كام
شات سعودي كام
سعودي كول
منتدى
سعودي لايف
سعودي انحراف
سعودي اح
شات صوتي
دردشة صوتية
سعودي كول 2010
سعودي كول 2011
سعودي كول 6666
دردشة سعودي كول
شات سعودي كول
سعودي انحراف
دردشة سعودي انحراف
شات سعودي انحراف
966

Thank you - the site very very nice

المجتمع المصري هو مجتمع يحب الترفية حيث ان سكان مصر تصل الى تسعون مليون فرد ولذلك نحن نقدم خدمة دردشة مصرية لكل اهل مصر ام الدنيا , وتعتبر مصر متقدمة فى هذا العالم من حيث النمو فى مجالات التكنولوجيا و الكمبيوتر بنسبة كبيرة جدا لذلك نفضل دخول شات مصري اكبر تجمع بنات و شباب فى شات الحب و اجمل بنات فى دردشة دردشة الحب , اضافة الى ذلك حيث يوجد دردشة قوية تضم جميع محافظات مصر هي شات مصرية الكتابية نتمني لكم قضاء وقت ممكن فى شات الاصدقاء و احلي دردشة التعارف الذي يوجد به بنات رومانسية فى دردشة بنات مصر المصرية


شات الحب - دردشة مصرية - شات - شات مصري - شات حب - دردشة - دردشة كتابية - دردشة الحب - شات حبنا - شات حبي - شات مصرية - دردشة حب - شات بنات - دردشة مصر - دردشة بنات مصر - شات بنات مصر - شات صوتي - chat love - دردشة ياحبي - شات بنات لبنان - الحب - شات كتابي - منتدي ياحبي - شات مصر - دردشة حبنا - العاب تلبيس البنات - دردشة بنات - شات ياحبي - Chat - شات لبناني - شات كلامنجي - دردشة كلامنجي - شبكة - تصميم مواقع - تصميم - شات الاسكندرية - دردشة لبنانية - دردشة بنات لبنان - بنات لبنان - موقع شات - سعودي كول - شات سعودي كول - شات بنت مصر - شات سكس

My hubby and I discovered this excellent content article whilst doing research via the internet. The blog posts helps as a helpful tutorial as well as it is educational. Nice. download movies

This is literally helpful and noticeably informing. This short post has a lot of splendid crucial specifics. Nice. movie downloads

I just came into this site during search of cleaning products and got interest to read it

I am new to android programming ,

Can please anyone tell me how to run the code i am having following doubts
1) i have written the php code in notepad but dont know where to save it ?
2) should i create tables in the mysql software i have ?

3) wat changes should be made to main.xml ,AndroidManifest.xml , strings.xml etc so that the code runs

can u mail me the entire source code

email: pakky10@yahoo.com

We can give them a good education that they can use in their life to get a better chance in this life. Im sure with a good education all of us will see the changing that all that kids can have
BenTen Oyunları - Zeka Oyunları - Komik Oyunlar - Oyunlar- Araba Yarışı Oyunları

Why are vitamin supplements for diabetics necessary? Eating healthy food sometimes does not guarantee that your body gets the right amount of vitamins that you need to make your body function properly

vitamin supplements

Really Really Thanks For This Wonderful article. Its glad that nowadays also, there is some original content on the internet. Otherwise, everywhere you go you will find duplicate content. Thanks Again. Like to Read You article and blog.

movie download | mediafire links | all buzzy news | ready movie download

Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here! It’s always nice when you can not only be informed, but also entertained! I’m sure you had fun writing this article.....

clubmz e-spy

Since MySQL is usually used together with PHP, the easiest and most obvious way to write a PHP script to manage the Bikram Yoga database and run this script using HTTP protocol from the android system.

I am so glad that I found an fascinating and useful blog like yours. Most of the blogs that I've seen over these past few days didn't please me due to a lack of substance. Nonetheless, reading this one of a kind article truly made my day. I'm so proud of you.

Web Development Qatar | Website Development Qatar

I visited this page first time and found it Very Good Job of acknowledgment and a marvelous source of info.........Thanks Admin!
Komik Oyunlar

How Connect To mysql using java script or jquery

can any help me

Thnak's Parmod

Can we connect to myswl using javascript

Help me

Thnak's John

Best Seo software

I present some sample code, Bali Property Investment | Baju Muslim which selects data from a database depending on a given condition and creates a log message on the android side with the received data.

Before attempting to talk about Organic Vitamin C, allow me to mention where we are supposed to find this wonderful source of nutrients: Our food! and pose a caveat that contrary to popular belief, not all foods are created equal, with Organic Food being better than the rest!

Natural vitamins supplements
and
Organic vitamins

I think this one's a winner. I am just a newbie with an Android phone. Thanks!
Best Stretch Mark Cream

Today everybody knows that organic food is healthier than the non organic food. Non organic food is the food which has been produced with the help of chemicals and pesticides. There are many side effects of eating non organic food as it cannot give you all the nutrients which our body required.

Natural vitamins supplements
and
Organic vitamins

Great resource! Thanks so much for sharing your wealth of information. I just started in this and I'm getting to know it

better! Cheers, keep up the good work!
Mobile Spy Software

I dont understand where to put the HttpPost and everithing off please anyone cant let me the code if not much I really need to understand this :S pd mi mail is icecoolsv@hotmail.com