需要帮助使用Android的PHP向MySQL发布数据

时间:2012-08-19 05:45:15

标签: php android mysql database

我正在开发一个示例Android应用程序,它有两个EditTexts和一个'Save'按钮。 它从EditTexts获取数据并使用PHP将其发布到MySQL服务器。代码很好。

我的onClick方法来保存数据

 public void saveMy(View v)
{
    name=e1.getText().toString();
    no=e2.getText().toString();
    try {
            httpclient = new DefaultHttpClient();
            httppost = new HttpPost("http://10.0.2.2/GujaratiApp/myPHP.php");


            ArrayList<NameValuePair> postParameters = new ArrayList<NameValuePair>();
                    postParameters.add(new BasicNameValuePair("Name",name));
            postParameters.add(new BasicNameValuePair("No",no));
            httppost.setEntity(new UrlEncodedFormEntity(postParameters));

            HttpResponse response = httpclient.execute(httppost);
            Log.i("postData", response.getStatusLine().toString());
        }
    catch(Exception ex)
    {
        Log.e("log_tag", "Error:  "+ex.toString());
    }  


}

PHP代码是:

<?php 
mysql_connect("localhost","root","") or die(mysql_error());
mysql_select_db("newDB");
$name =   $_POST['Name'];
$no = $_POST['No'] ;

$query_add="INSERT INTO  myData (`name` ,`no` ) VALUES ('.$name','.$no')";


$query_exec=mysql_query($query_add) or die(mysql_error()); 


mysql_close();

&GT;

当我单击Save按钮时,LogCat中有一条消息,HTTP / 1.1 200 OK。 当我在MySQL监视器中触发查询时,它会向表中添加一行,但添加的行不会显示任何内容。 见下图:enter image description here

我不知道出了什么问题..请帮帮我。

提前致谢。

1 个答案:

答案 0 :(得分:0)

请在mySQL中的列上添加空检查,使字段成为必填字段。

ALTER TABLE myData Modify name varchar(xyz) NOT NULL;
ALTER TABLE myData Modify no varchar(abc) NOT NULL;

之后请检查您是否收到响应状态200.这将验证是否在服务上正确接收了帖子参数。 如果没有,那么您可以尝试通过将这些参数附加到URL本身来传递这些参数。

httpclient = new DefaultHttpClient();
httppost = new HttpPost("http://10.0.2.2/GujaratiApp/myPHP.php?name=" + name + "&no=" + no);
HttpResponse response = httpclient.execute(httppost);

如果

,那应该让你前进
UrlEncodedFormEntity(postParameters)

无效。