mm_sqlite 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (6) hide show
  1. package/README.md +168 -102
  2. package/db.js +94 -115
  3. package/index.js +741 -548
  4. package/package.json +2 -2
  5. package/sql.js +245 -372
  6. package/sql_builder.js +0 -375
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mm_sqlite",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "高性能SQLite数据库操作模块,提供与mm_mysql完全兼容的API接口,支持异步操作、事务处理和批量操作",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,7 +36,7 @@
36
36
  "node": ">=14.0.0"
37
37
  },
38
38
  "dependencies": {
39
- "mm_base_service": "^1.0.2",
39
+ "mm_expand": "^1.9.7",
40
40
  "sqlite3": "^5.1.7",
41
41
  "sqlstring": "^2.3.3"
42
42
  }