Sqlcipher对Ormlite加密实用技能

Ormlite实用技能

  1. Ormlite打印sql语句
    adb命令:
    adb shell setprop log.tag.ORMLite DEBUG

    AndroidStudio开发工具会输出log

  2. 基于Android 7.0系统,so库导致崩溃问题

    build文件添加
    compile 'net.zetetic:android-database-sqlcipher:3.5.4@aar'

  3. 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--
```

你可能感兴趣的:(Sqlcipher对Ormlite加密实用技能)