美文网首页
Sqlcipher对Ormlite加密实用技能

Sqlcipher对Ormlite加密实用技能

作者: 162f127842fc | 来源:发表于2017-08-21 12:03 被阅读0次

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加密实用技能

      本文链接:https://www.haomeiwen.com/subject/jrycdxtx.html