Android Room SQLite_ERROR没有这样的表

时间:2017-08-09 15:08:54

标签: android sqlite dao android-room

我正在尝试使用Android Room并在关注this tutorial后,当我尝试构建应用时出现以下错误:

Error:(23, 27) error: There is a problem with the query: [SQLITE_ERROR] SQL error or missing database (no such table: screen_items)

这个名字很好,应该存在。在进行更改后,我清理了项目并确保从设备中完全卸载了它。

在我的Activity我用这一行初始化onCreate中的内容:

db = AppDatabase.getDatabase(getApplicationContext());

这是我的代码:

AppDatabase

@Database(entities = {PermitItem.class}, version = 1, exportSchema = false)
public abstract class AppDatabase extends RoomDatabase {
  public static String DATABASE_NAME = "my_database";
  public final static String TABLE_ITEMS = "screen_items";

  private static AppDatabase INSTANCE;

  public abstract PermitItemDao permitItemModel();

  public static AppDatabase getDatabase(Context context) {
    if (INSTANCE == null) {
        INSTANCE = Room.databaseBuilder(context, AppDatabase.class, DATABASE_NAME).allowMainThreadQueries().build();
    }
    return INSTANCE;
  }

  public static void destroyInstance() {
    INSTANCE = null;
  }
}

PermitItem

@Entity
public class PermitItem {
  @PrimaryKey(autoGenerate = true)
  public final int id;
  private String posX, posY, width, height, content, type;

  public PermitItem(int id, String posX, String posY, String width, String height, String content, String type) {
    this.id = id;
    this.posX = posX;
    this.posY = posY;
    this.width = width;
    this.height = height;
    this.content = content;
    this.type = type;
  }

  public static PermitItemBuilder builder(){
    return new PermitItemBuilder();
  }

  public static class PermitItemBuilder{
    int id;
    String posX, posY, width, height, content, type;


    public PermitItemBuilder setId(int id) {
        this.id = id;
        return this;
    }


    public PermitItemBuilder setPosX(String posX) {
        this.posX = posX;
        return this;
    }


    public PermitItemBuilder setPosY(String posY) {
        this.posY = posY;
        return this;
    }


    public PermitItemBuilder setWidth(String width) {
        this.width = width;
        return this;
    }


    public PermitItemBuilder setHeight(String height) {
        this.height = height;
        return this;
    }


    public PermitItemBuilder setContent(String content) {
        this.content = content;
        return this;
    }


    public PermitItemBuilder setType(String type) {
        this.type = type;
        return this;
    }

    public PermitItem build() {
        return new PermitItem(id, posX, posY, width, height, content, type);
    }
  }

  public long getId() {
    return id;
  }

  public String getPosX() {
    return posX;
  }

  public void setPosX(String posX) {
    this.posX = posX;
  }

  public String getPosY() {
    return posY;
  }

  public void setPosY(String posY) {
    this.posY = posY;
  }

  public String getWidth() {
    return width;
  }

  public void setWidth(String width) {
    this.width = width;
  }

  public String getHeight() {
    return height;
  }

  public void setHeight(String height) {
    this.height = height;
  }

  public String getContent() {
    return content;
  }

  public void setContent(String content) {
    this.content = content;
  }

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  @Override
  public String toString() {
    return "PermitItem{" +
            "id=" + id +
            ", posX='" + posX + '\'' +
            ", posY='" + posY + '\'' +
            ", width='" + width + '\'' +
            ", height='" + height + '\'' +
            ", content='" + content + '\'' +
            ", type='" + type + '\'' +
            '}';
  }


}

PermitItemDao

@Dao
public interface PermitItemDao {

  @Insert(onConflict = OnConflictStrategy.REPLACE)
  long addPermitItem(PermitItem permitItem);

  @Query("select * from " + TABLE_ITEMS)
  ArrayList<PermitItem> getAllPermitItems();

  @Query("select * from " + TABLE_ITEMS + " where id = :id")
  PermitItem getPermitItemById(int id);

  @Update(onConflict = OnConflictStrategy.REPLACE)
  void updatePermitItem(PermitItem permitItem);

  @Query("delete from " + TABLE_ITEMS)
  void removeAllPermitItems();
}

6 个答案:

答案 0 :(得分:53)

此错误的另一个原因可能是AppDatabase.java文件中未列出实体:

    @Database(entities = {XEntity.class, YEntity.class, ZEntity.class}, 
version = 1, exportSchema = true)

确保您在databases文件夹中有最新的db文件,如果导出架构,请确保正在更新app \ schemas下的.json架构文件。

答案 1 :(得分:22)

房间名称表与其关联实体相同。在您的DAO中,TABLE_ITEMS必须为PermitItem,因为您的实体为PermitItem。或者,将tableName属性添加到@Entity注释,以告知Room用于表格的其他名称。

答案 2 :(得分:0)

就我而言,问题的原因是使用了错误的表名。我为模型类选择的表名与类名不同。查询数据访问对象接口时,我错误地使用了类名。

@Query("SELECT * FROM tablename")

检查您的表名,以确保它们与模型类中注释的表名匹配。

我希望这会有所帮助。快活的编码!

答案 3 :(得分:0)

如果您只是添加了一个新表,则只需更新您的Database类(该类扩展了RoomDatabase()类)并更新实体注释

@Database(entities = [User::class, NewTableHere::class], version = 1)
abstract class AppDatabase : RoomDatabase() {

希望它可以节省您寻找答案,编码愉快的时间。

答案 4 :(得分:0)

我的问题是TABLE NAME:||| 我用错误的词写了表名:(((

答案 5 :(得分:-1)

看文章对我很有帮助。 我遇到了这个errorDatabase(entities = {Folder.class},version = 1,exportSchema = false)

只需添加我的其他课程 @Database(entities = {Folder.class,Urls.class},版本= 1,exportSchema = false)

相关问题