如何从解析的安装表中删除记录

时间:2016-01-28 07:36:25

标签: android parse-platform

我的代码如下:

public static void insertObjectIdInIinstallation(){
            ParseInstallation installation =ParseInstallation.getCurrentInstallation();
            installation.put(Constants.USER,ParseUser.getCurrentUser());
        }

//cannot update the installation table object id    

ParseInstallation installation =ParseInstallation.getCurrentInstallation();
            installation.deleteInBackground(new DeleteCallback() {
                @Override
                public void done(ParseException e) {
                    if (e != null) {
                        Log.d("error", e.toString());
                    }
                }
            });

我想从解析表中删除记录。而且我也无法删除应用程序安装时插入的行。

0 个答案:

没有答案