0

While populating an android listview from a mysql database I got this error. I have rebuilded this script from android hive. I found this error on stackoverflow but because I have another script the solutions doesn't work for me. It's not a duplicate because my error is with android and that error is not my problem I think. I get this error to:

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /android_connect/db_connect.php on line 28

get_all_products.php:

<?php

/*
 * Following code will list all the products
 */

// array for JSON response
$response = array();


// include db connect class
require_once __DIR__ . '/db_connect.php';

// connecting to db
$db = new DB_CONNECT();

// get all products from products table
$result = mysql_query("SELECT *FROM products") or die(mysql_error());

// check for empty result
if (mysql_num_rows($result) > 0) {
    // looping through all results
    // products node
    $response["products"] = array();

    while ($row = mysql_fetch_array($result)) {
        // temp user array
        $product = array();
        $product["pid"] = $row["pid"];
        $product["name"] = $row["name"];
        $product["info"] = $row["info"];
        $product["created_at"] = $row["created_at"];



        // push single product into final response array
        array_push($response["products"], $product);
    }
    // success
    $response["success"] = 1;

    // echoing JSON response
    echo json_encode($response);
} else {
    // no products found
    $response["success"] = 0;
    $response["message"] = "No products found";

    // echo no users JSON
    echo json_encode($response);
}
?>

db_connect.php:

/**
 * A class file to connect to database
 */

class DB_CONNECT {

// constructor
function __construct() {
    // connecting to database
    $this->connect();
}

// destructor
function __destruct() {
    // closing db connection
    $this->close();
}

/**
 * Function to connect with database
 */
function connect() {
    // import database connection variables
    require_once __DIR__ . '/db_config.php';

    // Connecting to mysql database
    $con = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) or die(mysql_error());

    // Selecing database
    $db = mysql_select_db(DB_DATABASE) or die(mysql_error()) or die(mysql_error());

    // returing connection cursor
    return $con;
}

/**
 * Function to close db connection
 */
function close() {
    // closing db connection
    mysql_close();
}

}

?> Vergadertafel.java:

package my.domain.app;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import org.apache.http.NameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.app.ListActivity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Toast;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;

public class Vergadertafel extends ListActivity {

    // Progress Dialog
    private ProgressDialog pDialog;
    // Creating JSON Parser object
    JSONParser jParser = new JSONParser();

    ArrayList<HashMap<String, String>> infoList;

    // url to get all info list
    private static String de_info = "http://127.0.0.1/android_connect/get_all_products.php";

    // JSON Node names
    private static final String TAG_SUCCESS = "success";
    private static final String TAG_PRODUCTS = "products";
    private static final String TAG_NAME = "name";
    private static final String TAG_PID = "pid";
    private static final String TAG_INFO = "info";

    // info JSONArray
    JSONArray info = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.vergadertafel);

        // Hashmap for ListView
        infoList = new ArrayList<HashMap<String, String>>();

        // Loading info in Background Thread
        new LoadAllInfo().execute();

        // Get listview
        ListView lv = getListView();

        // on seleting single info
        // launching Edit Info Screen
        lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                                    int position, long id) {
                // getting values from selected ListItem
                String pid = ((TextView) view.findViewById(R.id.pid)).getText()
                        .toString();

                // Starting new intent
                Intent in = new Intent(getApplicationContext(),
                        Info.class);
                // sending pid to next activity
                in.putExtra(TAG_PID, pid);

                // starting new activity and expecting some response back
                startActivityForResult(in, 100);
            }
        });

    }


    /**
     * Background Async Task to Load all info by making HTTP Request
     * */
    class LoadAllInfo extends AsyncTask<String, String, String> {

        /**
         * Before starting background thread Show Progress Dialog
         * */
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(Vergadertafel.this);
            pDialog.setMessage("Even geduld alstublieft...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }

        /**
         * getting All info from url
         a* */
        protected String doInBackground(String... args) {
            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            // getting JSON string from URL
            JSONObject json = jParser.makeHttpRequest(de_info, "GET", params);

            // Check your log cat for JSON reponse
            Log.d("All Info: ", json.toString());

            try {
                // Checking for SUCCESS TAG
                int success = json.getInt(TAG_SUCCESS);
        if (success== 0) {
            runOnUiThread(new Runnable() {
                public void run() {
                    Toast.makeText(getApplicationContext(), "Ik kan momenteel niet met de database communiceren, controleer uw internet verbinding en probeer het later nog eens.",
                            Toast.LENGTH_LONG).show();
                }
            });
        } else if (success == 1) {
                // info found
                // Getting Array of Info
                info = json.getJSONArray(TAG_PRODUCTS);

                // looping through All Info
                for (int i = 0; i < info.length(); i++) {
                    JSONObject c = info.getJSONObject(i);

                    // Storing each json item in variable
                    String id = c.getString(TAG_PID);
                    String name = c.getString(TAG_INFO);

                    // creating new HashMap
                    HashMap<String, String> map = new HashMap<String, String>();

                    // adding each child node to HashMap key => value
                    map.put(TAG_PID, id);
                    map.put(TAG_INFO, name);

                    // adding HashList to ArrayList
                    infoList.add(map);
                }

            } else {
            runOnUiThread(new Runnable() {
                public void run() {
                    Toast.makeText(getApplicationContext(), "Er is momenteel geen informatie beschikbaar, probeert u het later nog eens.",
                            Toast.LENGTH_LONG).show();
                }
            });
            }
        } catch (JSONException e) {
            Log.e("JSONException rule", " 153 Error:", e);
        }

        return null;
    }


        /**
         * After completing background task Dismiss the progress dialog
         * **/
        protected void onPostExecute(String file_url) {
            // dismiss the dialog after getting all info
            pDialog.dismiss();
            // updating UI from Background Thread
            runOnUiThread(new Runnable() {
                public void run() {
                    /**
                     * Updating parsed JSON data into ListView
                     * */
                    ListAdapter adapter = new SimpleAdapter(
                            Vergadertafel.this, infoList,
                            R.layout.list_item, new String[] { TAG_PID,
                            TAG_NAME},
                            new int[] { R.id.pid, R.id.name });
                    // updating listview
                    setListAdapter(adapter);
                }
            });

        }

    }
}

JSONParser.java: package my.domain.app;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.List;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URLEncodedUtils;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class JSONParser {

    static InputStream is = null;
    static JSONObject jObj = null;
    static String json = "";

    // constructor
    public JSONParser() {

    }

    // function get json from url
    // by making HTTP POST or GET mehtod
    public JSONObject makeHttpRequest(String url, String method,
            List<NameValuePair> params) {

        // Making HTTP request
        try {

            // check for request method
            if("POST".equals(method)){
                // request method is POST
                // defaultHttpClient
                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);
                httpPost.setEntity(new UrlEncodedFormEntity(params));

                HttpResponse httpResponse = httpClient.execute(httpPost);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();

            }else if("GET".equals(method)){
                // request method is GET
                DefaultHttpClient httpClient = new DefaultHttpClient();
                String paramString = URLEncodedUtils.format(params, "utf-8");
                url += "?" + paramString;
                HttpGet httpGet = new HttpGet(url);

                HttpResponse httpResponse = httpClient.execute(httpGet);
                HttpEntity httpEntity = httpResponse.getEntity();
                is = httpEntity.getContent();
            }           


        } catch (UnsupportedEncodingException e) {
            Log.e("UnsupportedEncodingException", "error message:", e);
        } catch (ClientProtocolException e) {
            Log.e("ClientProtocolException", "error message", e);
        } catch (IOException e) {
            Log.e("IOException", "error message", e);
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result ", e);
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data ", e);
        }

        // return JSON String
        return jObj;

    }
}

Error:

05-17 11:27:47.525     902-1128/my.domain.app E/JSON Parser﹕ Error parsing data
org.json.JSONException: Value <br of type java.lang.String cannot be converted to JSONObject
at org.json.JSON.typeMismatch(JSON.java:111)
at org.json.JSONObject.<init>(JSONObject.java:159)
at org.json.JSONObject.<init>(JSONObject.java:172)
at my.domain.app.JSONParser.makeHttpRequest(JSONParser.java:92)
at my.domain.app.Vergadertafel$LoadAllInfo.doInBackground(Vergadertafel.java:113)
at my.domain.app.Vergadertafel$LoadAllInfo.doInBackground(Vergadertafel.java:91)
at android.os.AsyncTask$2.call(AsyncTask.java:288)
at java.util.concurrent.FutureTask.run(FutureTask.java:237)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:841)
Anoniem
  • 75
  • 12
  • 1
    possible duplicate of [The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead](http://stackoverflow.com/questions/13944956/the-mysql-extension-is-deprecated-and-will-be-removed-in-the-future-use-mysqli) – TimoStaudinger May 17 '15 at 16:00
  • No the problem here is with android and that is a normal website problem – Anoniem May 17 '15 at 16:06
  • It is not, have a look at my answer below. – TimoStaudinger May 17 '15 at 16:18

2 Answers2

0

Three options:

  • Disable deprecated messages error_reporting(E_ALL ^ E_DEPRECATED); in PHP.
  • Update your code to use PDO or MySQLI if you have time.
  • Disable mysql_ functions and use a PDO/MySQLI wrapper.

Option 2 is the best if you have time.

Aziz Saleh
  • 2,687
  • 1
  • 17
  • 27
  • Warning: mysqli_select_db() expects exactly 2 parameters, 1 given in /home/u968801851/public_html/android_connect/db_connect.php on line 31 Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/u968801851/public_html/android_connect/db_connect.php on line 31 Warning: mysqli_close() expects exactly 1 parameter, 0 given in /home/u968801851/public_html/android_connect/db_connect.php on line 42 – Anoniem May 17 '15 at 16:10
  • @Anoniem I suppose you did not look at the docs and simply renamed the function? – TimoStaudinger May 17 '15 at 16:20
0

This is not a problem in your Android code. The root of the problem lies in this line:

$con = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) or die(mysql_error());

You are using the function mysql_query to access your mysql database. All funtions included in extension ext/mysql with the prefix mysql_ are deprecated since PHP 5.5 however. When you try to use it, you get the error message

Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /android_connect/db_connect.php on line 28

which basically tells you exactly that.

Since this error occurred, die(mysql_error()) ends the execution of your script and echos the error message. Your android application in turn tries to process the error message, realizes that it is not a valid JSON string (which is in fact not) and reports this.

In order to prevent this, you can either suppress the error message, which is not a good practice at all, however. Better just use the MySQLi or PDO_MySQL extensions instead, which are not deprecated.

TimoStaudinger
  • 41,396
  • 16
  • 88
  • 94