我正在尝试使用Android Room,在完成本教程后,我在尝试构建应用程序时遇到以下错误:
Error:(23,27)Error:查询有问题:[SQLITE\u Error]SQL错误或缺少数据库(没有这样的表:screen\u items)
这个名字很好,应该存在。在进行更改后,我清理了项目并确保它已从设备中完全卸载。
在我的活动
中,我用这一行初始化onCreate
中的内容:
db = AppDatabase.getDatabase(getApplicationContext());
这是我的代码:
应用数据库
@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;
}
}
许可证
@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 + '\'' +
'}';
}
}
许可证
@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();
}
看到这些文章对我帮助很大。我有一个错误数据库(entities={Folder.class},version=1,exportSchema=false)
只需添加我的另一个类@Database(entities={Folder.class,url.class},version=1,exportSchema=false)
房间名称表与其关联实体相同。在您的DAO中,TABLE_ITEMS
需要是PermitItem
,因为您的实体是PermitItem
。或者,将tableName
属性添加到@Entity
注释中,以告诉Room要用于表的其他名称。
此错误的另一个原因可能是实体未在AppDatabase中列出。java文件:
@Database(entities = {XEntity.class, YEntity.class, ZEntity.class},
version = 1, exportSchema = true)
确保数据库文件夹中包含最新的db文件,如果导出架构,请确保app\Schemas下的. json架构文件已正确更新。
目前在本地环境下工作,但在推到heroku并访问我的实时页面后,我在/处得到一个操作错误。看起来我根本不能运行任何for循环。我只想补充一下,我正在做djangogirl教程,是一个新手。 OperationalError在/没有这样的表:blog_post 其他信息:请求方法:获取请求URL:https://girlsblog.herokuapp.com/Django版本:1.7.7异常类型:O
问题内容: 我正在使用Django-CMS的Django项目中构建一个相当简单的应用程序,即研究项目。(这是我对项目/应用程序的首次尝试。)它的主要目的是存储各种知识资产(例如,研究人员撰写的文章,书籍等)。 问题是,当我将浏览器指向/ research /时,出现一条错误,提示表’research_journal’不存在(“ no such table”)。 我正在使用带有sqlite3数据库的
我在我的API中使用条带连接,我想更新和处理现有的paymentIntent。使用NodeJS条带包创建paymentIntent成功 这将成功返回一个paymentIntent对象,该对象具有id('pi_yyy')、客户端密码('pi_yyy_secret_zzz')、状态('requires_payment_method')和更多字段。 但是,当使用返回的支付意图id进一步更新支付意图或使用
问题内容: 我遵循的是官方Django文档中的第一个应用程序教程,尝试保存通过管理页面进行的某些更改时出现此错误。我对此进行了一些研究,但是我能够找到的可能解决方案(例如迁移数据库)根本行不通。如果您想查看我的代码的某些特定部分,请告诉我。 以下是错误: and the traceback: 问题答案: 我自己碰到了这个问题,它似乎与https://code.djangoproject.com/t
问题内容: 我正在尝试使用杰克逊对POJO进行序列化和反序列化。从POJO到JSON可以完美地工作,而从另一个方向去则不行。 我有一个POJO 并运行和测试我运行了calendar.model包; 引发异常 我已经尽力将JSON转换为POJO了,但是没有。如果我从JSON映射到Map类型,它确实可以工作。 谢谢您的帮助 编辑 这是我依赖中的杰克逊的grep 看起来除了jackson2之外,没有其他
大家好,我有一些问题与我的SQLite数据库在我的java程序。我试图从几个表中检索数据,但它说我的表不存在。我已经用数据库浏览器检查过了,它肯定在那里,所以我不确定我做错了什么。这是我收到的错误: [SQLITE_ERROR]SQL错误或缺少数据库(没有这样的表:staff_clocked_in.clock_in_time) 我确信我的表存在,并且两个表中都有数据,这里是我的数据库浏览器的截图。