Ormlite实用技能
-
Ormlite打印sql语句
adb命令:
adb shell setprop log.tag.ORMLite DEBUG
AndroidStudio开发工具会输出log
-
基于Android 7.0系统,so库导致崩溃问题
build文件添加
compile 'net.zetetic:android-database-sqlcipher:3.5.4@aar'
-
Sqlcipher 对Ormlite加密需要修改配置文件
ormlite_config.txt
```
# --table-start--
dataClass=包名.SerialNumber
tableName=T_LOCAL_SERIAL_NUMBER
# --table-fields-start--
# --field-start--
fieldName=id
columnName=FID
id=true
# --field-end--
# --field-start--
fieldName=currentDate
columnName=FCURRENTDATE
# --field-end--
# --table-fields-end--
# --table-end--
```