感谢大佬:https://www.cnblogs.com/flintlovesam/p/5241866.html (https://www.cnblogs.com/flintlovesam/p/5241866.html) SQLite错误总结 android.database.sqlite.SQLiteConstraintException: error code 19: constraint failed错误原因 情况1:你定义的字段为 not null而插入时对应的字段却没值. 情况2:你定…
SQLite错误总结 1. android.database.sqlite.SQLiteConstraintException: error code 19: constraint failed错误原因    情况1:你定义的字段为 not null而插入时对应的字段却没值.    情况2:你定义的字段设定PRIMARY,而插入的值已经在表中存在.    情况3:在进行修改的时候set的id与where的id不同.2.列命名规则    情况1:保留词不应作为列明,如group.index…
java的class中的Long类型变量调用默认的 构造函数new后会被初始化为0. 这句话大家可能感觉这么低级的事情还用你说? 我想说的是这个会产生的一个应用场景 和 避免方法 场景:db插入时候primarykey是 Long值的id 那么插入的时候会默认把这个值一并插入的吧!但是 大家知道这不可以! 所以如何避免初始化的时候不用初始化这个值呢? 很简单,既然是构造函数的问题那么就使用构造函数来处理, 例如: Class student{ private Long id; private S…
执行命令行 brew install libimobiledevice --HEAD…
1.spark mongo 读取 val rdd = MongoSpark.builder().sparkSession(spark).pipeline(Seq(`match`(regex("path", java.util.regex.Pattern compile r.toString)))).build.toRDD() 2.error code 6 在spark读数据时容易遇到,mongos连接池已满,操作被拒绝,需要修改spark中的connectionperhost lazy…
今天遇到了一个很奇怪的问题,登录完成后,程序会莫名crash, 报了下面的错误: sqlite: Error Code : (SQLITE_BUSY) (database is locked (code ): , while compiling: PRAGMA journal_mode) 经过分析发现是数据库被locked,从而导致在调用 mDatabase = mDBHelper.getWritableDatabase(); 时发生了crash, 而android上面同一时间向sqlite里写…
作为一个JRebel的深度用户,在win10下用JRebel的eclipse插件使用的时候遇到了如下问题: java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5. 这是一个warning…
使用PlateSpin复制出来的一数据库服务器(Oracle 10g)在启动数据库实例时遇到"ORA-00600: internal error code, arguments: [4194]....."错误,实例在启动后,会自然Down掉.具体情况如下所示: Successfully onlined Undo Tablespace 54. Mon Nov 21 11:34:03 2016 SMON: enabling tx recovery Mon Nov 21 11:34:03 2…
thinkphp 在Apache上配置启用伪静态,重启Apache1 restart 竟然失败了,报错 Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details 嗯,看状态 执行命令 systemctl status http…
ORA-00600: internal error code, arguments: [SKGMFAIL], [2], [4], [4], [1], [], [], [], [], [], [], [] 解决方案: 查看操作系统版本 [root@KPI-APP1 ~]# more /etc/redhat-release CentOS release 4.8 (Final) 查看内存:free 12GB 修改配置文件/etc/sysctl.conf kernel.shmall = 2097152…