登录 注册
当前位置:主页 > 资源下载 > 50 > lib版本为sqlite3.7.7.1的x64位库,具备加密支持且集成了CppSQLite3

lib版本为sqlite3.7.7.1的x64位库,具备加密支持且集成了CppSQLite3

  • 更新:2024-07-12 15:40:14
  • 大小:2.95MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:SQLite - 数据库
  • 格式:ZIP

资源介绍

最新版本的sqlite3 64位静态库(不需要带dll),VS2010编译的,如果需要32位的自行编译就行了,里面包含demo和源码。 支持加密和集成了CppSQLite3 CppSQLite3DB db; db.open(DB_NAME, "password"); string temp = "select value from config where key='aaaa'"; CppSQLite3Query q = db.execQuery(temp.c_str()); temp.clear(); while (!q.eof()) { temp.append(q.fieldValue(0)); printf(temp.c_str()); q.nextRow(); }