有没有办法将MySQL数据库信息下载到SQLite

时间:2014-04-03 06:45:45

标签: php android mysql database sqlite

我是android新手并且创建了与web服务器交互的简单android应用程序。我想将MySQL数据库数据下载到SQLite数据库然后,android应用程序使用这个SQlite数据库信息。有可能吗?是否有任何教程?

请帮忙。感谢

1 个答案:

答案 0 :(得分:0)

是的,是否可能,您需要了解从数据库中获取数据的方法,您可以按照以下示例进行操作:

Send and Receive JSON between Android and PHP Web Service

Android JSON Parsing Tutorial

将json放到SQLite中的方式如下:

Helper helper=new Helper(this);

JSONObject spinner = PRODUK.getJSONObject(i);
                                            String LSBS_ID = spinner.optString("LSBS_ID");
                                            String LSBS_NAME = spinner.optString("LSBS_NAME");
                                        helper.InsertSpin_Produk(LSBS_ID, LSBS_NAME);

    public void InsertSpin_Produk(
                String LSBS_ID, String LSBS_NAME
                ) {
            ContentValues cv=new ContentValues();
            cv.put("LSBS_ID",  LSBS_ID);
            cv.put("LSBS_NAME",  LSBS_NAME);
            getWritableDatabase().insert("spinner_produk", null, cv);
        }