sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo conecto la base de datos mysql e inserto datos en ella usando el código de Android?

Aquí

HttpPost httppost = new HttpPost("http://10.0.2.2/insert.php");

se menciona insert.php significa que tienes que poner este archivo en el servidor

solo cambia el http://10.0.2.2/insert.php a la ruta del archivo de su servidor donde se almacena el archivo

Código para insertar.php

        // this variables is used for connecting to database and server
        $host="yourhost";
        $uname="username";
        $pwd='pass';
        $db="dbname";

        // this is for connecting
        $con = mysql_connect($host,$uname,$pwd) or die("connection failed");
        mysql_select_db($db,$con) or die("db selection failed");

        // getting id and name from the client
         if(isset($_REQUEST)){
        $id=$_REQUEST['id'];
        $name=$_REQUEST['name'];}


       // variable used to tell the client whether data is stored in database or not

        $flag['code']=0;

        // for insertion
        if($r=mysql_query("insert into emp_info values('$name','$id') ",$con))
        {
            //if insertion succeed set code to 1
            $flag['code']=1;
            echo"hi";
        }
        // send result to client that will be 1 or 0
        print(json_encode($flag));

        //close
        mysql_close($con);
    ?>

como se menciona en su código, obtendrá el valor del servidor, ya sea que los datos estén almacenados o no, mediante el código =1 para almacenar y el código =0 para no almacenar

 JSONObject json_data = new JSONObject(result);
            code=(json_data.getInt("code"));

            if(code==1)
           {
        Toast.makeText(getBaseContext(), "Inserted Successfully",
            Toast.LENGTH_SHORT).show();
            }
            else
          {
        Toast.makeText(getBaseContext(), "Sorry, Try Again",
            Toast.LENGTH_LONG).show();
            }