【发布时间】:2019-07-11 23:01:32
【问题描述】:
刚刚设置了一个Sqlite db,我第一次成功插入,正在尝试在代码中进行更新查询,突然android无法编译。收到此错误:
Gradle may disable incremental compilation as the following annotation processors are not incremental: room-compiler-2.1.0.jar (androidx.room:room- compiler:2.1.0), lifecycle-compiler-2.0.0.jar (androidx.lifecycle:lifecycle-compiler:2.0.0).
Consider setting the experimental feature flag android.enableSeparateAnnotationProcessing=true in the gradle.properties file to run annotation processing in a separate task and make compilation incremental.
C:\app\src\main\java\com\example\persistence\repositories\NoteRepository.java:74: error: method update in interface NoteDao cannot be applied to given types;
noteDao.update(notes[0]);
^
required: int,int
found: Note
Repository 中与此方法相关的错误:
private static class UpdateNoteAsyncTask extends AsyncTask<Note, Void, Void>{
private NoteDao noteDao;
private UpdateNoteAsyncTask(NoteDao noteDao){
this.noteDao = noteDao;
}
@Override
protected Void doInBackground(Note... notes) {
noteDao.update(notes[0]);
return null;
}
}
数据访问类:
@Dao
public interface NoteDao {
@Insert
void insert(Note note);
@Query("UPDATE note_table SET distortions= :distortions WHERE cbtId= :cbtId")
void update(int cbtId, int distortions);
@Delete
void delete(Note note);
【问题讨论】:
标签: android sqlite android-sqlite android-room