1. ORA-00947: Not enough values 没有足够的值 执行insert的时候出现这个错误. 例如:insert into 表1 values (?,?,?); 表1的结构有4个column,显然插入的值只有三个,因此才会出现这个问题. 倘若只想插入三个数值的话:insert into 表1(a,b,c) values (?,?,?); 用这个语句就可以了. 2. ORACL 异常:can bind a LONG value only for insert into a…
在项目开发中,使用SQLite一不小心就会碰到各种DB异常,网上搜了下没有这方面的资料,写出来记录下. 异常信息:android.database.sqlite.SQLiteMisuseException: library routine called out of sequence: , while compiling: ...... 解决这种异常有2个办法:方法一:单例模式使用DB时,函数[方法]上加同步synchronized即可解决. 方法二:工厂模式使用DB也可以解决(或者在线程中ne…