greendao table' has no column named 'column' code -1的问题。

关于greendao版本的问题。。greendao

compile ‘org.greenrobot:greendao:3.0.1‘在创建数据库的时候因为把名字多加了.db导致 table‘ has no column named ‘column‘ code -1的问题。greendao不同的版本会有一些细致的变化
‘org.greenrobot:greendao:3.2.0‘的就不会产生这个问题!!

greendao table' has no column named 'column' code -1的问题。

时间: 2024-08-08 07:39:54

greendao table' has no column named 'column' code -1的问题。的相关文章

MySQL如何妥善更改大表表结构(Alter table structure of a single column

MySQL如何妥善更改大表表结构(Alter table structure of a single column http://blog.sina.com.cn/s/blog_445e807b0101egpf.html 在网上搜到的一段很有帮助的三段脚本,贴出来供参考,以飨读者,做个笔记:##  Script 1#  Alter table structure of a single column of a large table#CREATE TABLE WorkingTableNew LI

table xxx has no column named xxxx

 出现这种错误的原因可能有2个: 1.你的表里面确实没有这个字段,请在建表语句中加上这个字段,另外还要注意所有出现这个表的语句的地方都要添加上这个字段. 2.你的表里之前没有这个字段,但现在你添加上了,不幸的是,你的数据库里面已经存储了你没添加这个字段之前的记录,如果是这样的话,AVD也会报错崩溃,解决方法就是: 修改数据库版本号或者修改数据库名称.

Data Flow ->> Import Column & Export Column

这两个transformation的作用是把DT_TEXT, DT_NTEXT, DT_IMAGE类型的数据在文件系统和数据库间导出或者导入.比如把某个数据库表的image类型的字段导出到文件系统成为img文件.做法是在导入导出的时候必须提供完全文件名和路径.需要注意的地方是需要在Import Column组件的Input and Output Properties页面加一个output字段来导入比如img文件,然后columnn的id必须在input column和output column间

PowerDesigner 15的Table表视图的列显示Code

PowerDesigner 15的图表的Table表视图一般显示成这样: 现在,我要将Code显示到Table表视图上,该怎么做?选择菜单:Tools→Display Preferences,弹出对话框选择Table,点击Advanced按钮,弹出对话框选择Columns,点击Select按钮,弹出对话框后选中Code并将其移动到最上面. 现在看看Table表视图的效果:

[Hive - LanguageManual] Alter Table/Partition/Column

Alter Table/Partition/Column Alter Table Rename Table Alter Table Properties Alter Table Comment Add SerDe Properties Alter Table Storage Properties Additional Alter Table Statements Alter Partition Add Partitions Dynamic Partitions Rename Partition

注解学习实例(模拟hibernate,table,column注解,拼装SQL)

直接上代码 package com.guoxinet.o2o.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; imp

Inheritance with EF Code First: Part 2 – Table per Type (TPT)

In the previous blog post you saw that there are three different approaches to representing an inheritance hierarchy and I explained Table per Hierarchy (TPH) as the default mapping strategy in EF Code First. We argued that the disadvantages of TPH m

Inheritance with EF Code First: Part 1 – Table per Hierarchy (TPH)

以下三篇文章是Entity Framework Code-First系列中第七回:Entity Framework Code-First(7):Inheritance Strategy 提到的三篇.这三篇文章写的时间有点久远,还是在2010年,提到EF应该在4.1版本之前,使用的还是ObjectContext而不是现在的DbContext,内容供参考 -------------------------------------------------------------------------

proc中插入VARCHAR2字段报ORA-01461: can bind a LONG value only for insert into a LONG column

最近做一个天信达货运接口的项目,碰到这么个诡异的问题. 背景: 使用proc写的应用,向数据库插入记录.表中有三个VARCHAR2(4000)类型的字段.注:Oracle 9i的库. 问题: 执行的时候提示:ORA-01461: can bind a LONG value only for insert into a LONG column 无法插入记录,但使用PLSQL Developer或SQLPLUS手工执行相同的SQL却没有问题. 然后换了一个10g的库,用proc可以正确完成插入. 难