Content Provider上的更新不执行任何操作

时间:2014-04-03 15:08:05

标签: android android-sqlite android-contentprovider

我正在尝试制作一个Android应用来帮助患有头痛的人。我有一个sqlite数据库来存储危机,用户可以通过按下按钮来添加危机。相同的按钮用于表示危机已经结束。换句话说,当你感到头痛时,你按下按钮;然后,当它结束时,再次按下它,应用程序会更新“结束日期”的相应条目。

但如果我的插件运行良好,我的更新根本不会更新。以下是它应该如何工作:

我首先检索数据库中的最新条目(具有最大ID的条目),然后获取实际日期,并将其放入ContentValue中。最后我更新了条目。

这是按钮代码:

public void onClickStartStop(View v){
    Log.v("andromed", "Starting/Stopping crisis");
    String d = new Date().toString();
    ContentValues cv = new ContentValues();
    String user_info = "";
    String[] projection = {CriseContract.COLUMN_NAME_CRISE_ID, CriseContract.COLUMN_NAME_CRISE_DEBUT,CriseContract.COLUMN_NAME_CRISE_FIN};
    Cursor criseCursor = getContentResolver().query(CriseContract.CONTENT_URI, projection,"SELECT MAX("+CriseContract.COLUMN_NAME_CRISE_ID+") FROM "+CriseContract.TABLE_NAME, null, null);
    Log.v("andromed",""+criseCursor.getCount());
    if(criseCursor.getCount()>=0){
        while(criseCursor.moveToNext()){
            String date_fin = criseCursor.getString(criseCursor.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_FIN));
            if(!(date_fin==(null))){
                Log.v("andromed","Date exists "+date_fin);
                user_info = "Crise enregistrée";
                cv.put(CriseContract.COLUMN_NAME_CRISE_DEBUT, d);
                Uri u = getContentResolver().insert(CriseContract.CONTENT_URI, cv);
            }else{
                String date_deb = criseCursor.getString(criseCursor.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_DEBUT));
                if(date_deb==null){
                    Log.v("andromed","No date in db");
                    user_info = "Crise enregistrée";
                    cv.put(CriseContract.COLUMN_NAME_CRISE_DEBUT, d);
                    Uri u = getContentResolver().insert(CriseContract.CONTENT_URI, cv);
                }else{
                    Log.v("andromed", "Need to close the crisis");
                    cv.put(CriseContract.COLUMN_NAME_CRISE_FIN, d);
                    int tmp = getMaxId();
                    String where = CriseContract.COLUMN_NAME_CRISE_ID+"="+tmp;
                    String[] st = {""+tmp};
                    int nup = getContentResolver().update(CriseContract.CONTENT_URI,cv, where, null);
                    Log.v("andromed", nup+" rows updated");
                    user_info = "Crise terminée";
                }
            }
        }
    }else{
        user_info = "Erreur lors de la lecture";
    }
    Toast t = Toast.makeText(getApplicationContext(),user_info, Toast.LENGTH_LONG);
    t.show();
}

(不要介意Log和toast的东西,仅供我使用)。

这是我检索最大ID的函数:

private int getMaxId(){
    String[] projection = {CriseContract.COLUMN_NAME_CRISE_ID};
    String selection = "SELECT MAX("+CriseContract.COLUMN_NAME_CRISE_ID+") FROM "+CriseContract.TABLE_NAME;
    Cursor c = getContentResolver().query(CriseContract.CONTENT_URI, projection, selection, null, null);
    Log.v("andromed", ""+c.getCount());
    int maxid=-1;
    if(c!=null){
        while(c.moveToNext()){
            maxid = c.getInt(c.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_ID));
        }
    }
    Log.v("andromed", "Greatest id in table Crise : "+maxid);
    return maxid;
}

当然,我的合同类:

public final static class CriseContract{
    public static final String AUTHORITY = "com.piertris.andromed";
    public static final String BASE_PATH = "database";
    public static final Uri CONTENT_URI = Uri.parse("content://"+AUTHORITY+"/"+BASE_PATH);
    public static final String CONTENT_TYPE = ContentResolver.CURSOR_DIR_BASE_TYPE+"/"+BASE_PATH;
    public static final String CONTENT_ITEM_TYPE= ContentResolver.CURSOR_ITEM_BASE_TYPE+"/andromed";
    public static final String TABLE_NAME = "crises";
    public static final String COLUMN_NAME_CRISE_ID = "criseid";
    public static final String COLUMN_NAME_CRISE_DEBUT = "date_debut";
    public static final String COLUMN_NAME_CRISE_FIN = "date_fin";
    public static final String COLUMN_NAME_INTENSITE = "intensite";
    public static final String COLUMN_NAME_SYMPTOM = "symptome";
    public static final String COLUMN_NAME_MED = "prise_med";
    public static final String COLUMN_NAME_MEDS = "type_med";
    public static final String COLUMN_NAME_AURA = "aura";
    public static final String COLUMN_NAME_COMMENT = "comments";

}

当我尝试结束当前的危机时,我的Logcat告诉我0行已更新。

感谢SO,我已经纠正了由于错误使用该函数而导致的其他问题,但这一次,我找到的唯一链接就是这个:Android content provider not updating database并且OP刚添加评论说他更新了他的ContentProvider,但仅此而已。

我做错了什么?我是否“错误地”命名了我的专栏名称?我是否滥用了更新功能?

感谢您的帮助。

修改

感谢Jozua,我意识到我没有在ContentProvider文件中实现更新功能。好吧,我现在觉得非常愚蠢。一旦写入update()函数,我会告诉你它是如何工作的。

再次感谢Jozua。

1 个答案:

答案 0 :(得分:0)

好吧,我解决了这个问题,但问题非常糟糕。

考虑到我只检索一次危机以便添加几乎所有需要但开始日期和ID的事实,我只是将我的update()请求转换为delete(),然后是update()in我传递了一个ContentValue,其中包含我之前删除的行的值。

我知道编程非常糟糕,但至少它有效。

我不接受我的回答,以防有人发现我的update()函数出了什么问题,并且可能帮助其他人(甚至是我,以便我可以改进我的代码)。

那就是:)

以下是相关代码的部分:

public void onClickStartStop(View v){
    //go straight to relevant part
    String date_deb = criseCursor.getString(criseCursor.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_DEBUT));
    Log.v("andromed", "Need to close the crisis");
    cv.put(CriseContract.COLUMN_NAME_CRISE_ID, criseCursor.getInt(criseCursor.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_ID)));
    cv.put(CriseContract.COLUMN_NAME_CRISE_DEBUT, date_deb);
    cv.put(CriseContract.COLUMN_NAME_CRISE_FIN, d);
    int ndel = getContentResolver().delete(CriseContract.CONTENT_URI, CriseContract.COLUMN_NAME_CRISE_ID+"=?", new String[] {""+criseCursor.getInt(criseCursor.getColumnIndex(CriseContract.COLUMN_NAME_CRISE_ID))});
    Log.v("andromed", ndel+" rows deleted");
    Uri u = getContentResolver().insert(CriseContract.CONTENT_URI, cv);
    user_info = "Crise terminée";
    //End of relevant code
}

感谢那些可能已经搜索过的人。