sql >> データベース >  >> RDS >> Mysql

AndroidはMySqlテーブルからデータを取得します

    runOnUiThread(new Runnable() {  
                        @Override
                        public void run() 
                        {
                            // TODO Auto-generated method stub
                            try {
    
    
                                txt3.setText(product.getString(TAG_DESCRIPTION));
    
                            } catch (JSONException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        }
                    });
    
                }else{
                    // product with pid not found
                }
    

    の後にこの行を追加します
    / get first product object from JSON Array
                                JSONObject product = productObj.getJSONObject(0);
    
                                // product with this pid found
                                // Edit Text
                                txtName = (TextView) findViewById(R.id.textView3);
    

    それで問題は解決します



    1. mysqlのselectでif/else条件を使用する方法

    2. データベース接続を安全にするにはどうすればよいですか?

    3. データベース行タプルの整数に「L」サフィックスが付いているのはなぜですか?

    4. MariaDB JSON_DEPTH()の説明