使用手机序列号+数据的时间戳来实现多记录+增量导入

使用的是sqlite数据库

查看表结构的sql

pragma table_info(表名);

 

连接加密的数据库(密码abcdefg),demo.db为加密的数据库

连接工具工具sqlcipher-3.0.0\bin\sqlcipher-shell32-debug.exe

连接:

D:\PhoneData\w\GWY0217114001566\sqlcipher-3.0.0\bin>D:\PhoneData\w\GWY0217114001
566\sqlcipher-3.0.0\bin\sqlcipher-shell32-debug.exe D:\PhoneData\w\GWY0217114001
566\sqlcipher-3.0.0\bin\demo.db

输入密码:

sqlite> pragma key = 'abcdefg';

然后就可以正常使用sql语句了

导入多个手机的数据库数据到本地数据库

相关文章:

  • 2021-08-27
  • 2021-08-02
  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2021-11-23
  • 2022-01-05
猜你喜欢
  • 2022-12-23
  • 2021-10-29
  • 2021-04-11
  • 2021-12-12
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案