与MySQL数据库的基本Android交互

时间:2013-08-04 16:04:40

标签: php android mysql

这是我第一次尝试让Android应用程序与存储在远程服务器上的MySQL数据库进行交互。我现在要做的就是将一条记录插入一个空的远程表中。基本上,我只是想建立一个连接并编写非常简单的数据。

我没有收到任何错误,但此表运行后我的表仍然是空的。我做错了什么???

/my_db/test.php     

    include('connection.php');

    $name='dummy';

    $sql = "INSERT INTO test (name) VALUES ('$name')";
    $result = mysql_query($sql);

    if(!$result) {return -1;}

    return 1;
?>

这是我的Activity的onCreate函数:

btnRegister.setOnClickListener(new View.OnClickListener() {         
    public void onClick(View view) {

        //Avoiding threading issues for the moment
        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy); 

        DefaultHttpClient httpclient = new DefaultHttpClient();
        String testURL = context.getResources().getString(R.string.dbURL) + "my_db/test.php";
        System.err.println(testURL); //output looks good 'http://XXX.XXX.XXX.XXX/my_db/test.php'
        HttpPost httppost = new HttpPost(testURL);

        try
        {
            //not actually using the passed parameter for now
            ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
            nameValuePairs.add(new BasicNameValuePair("name", inputFullName.getText().toString()));

            httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
            HttpResponse response = httpclient.execute(httppost);
            System.err.println("done");
        }
        catch(Exception e)
        {
            System.err.println("error");
            e.printStackTrace();
        }
    }
});

2 个答案:

答案 0 :(得分:1)

首先,添加mysql_close();在你的php中,因为你必须在db操作完成后关闭连接,否则它将占用系统资源。

第二,尝试注意响应,如果它是1或-1,如果为-1,你可能需要在PHP方面做一些调查。

答案 1 :(得分:1)

您可能会检查服务器响应或http响应,因为看起来代码实际连接到服务器端,但服务器端无法执行查询,您可能首先尝试在Web浏览器中尝试服务器端