utilitas 1995.2.13 → 1995.2.14
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.
- package/README.md +3 -0
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/dbio.mjs +4 -0
- package/lib/manifest.mjs +1 -1
- package/lib/memory.mjs +36 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,6 +110,8 @@ Works in Node.js and modern browsers.
|
|
|
110
110
|
| :--- | :--- | :--- |
|
|
111
111
|
| _NEED | Array | mysql2,pg |
|
|
112
112
|
| default | AsyncFunction | options |
|
|
113
|
+
| MYSQL | String | MYSQL |
|
|
114
|
+
| POSTGRESQL | String | POSTGRESQL |
|
|
113
115
|
| assembleInsert | Function | table, data, options |
|
|
114
116
|
| assembleQuery | Function | table, options |
|
|
115
117
|
| assembleSet | Function | data, options |
|
|
@@ -124,6 +126,7 @@ Works in Node.js and modern browsers.
|
|
|
124
126
|
| drop | AsyncFunction | table, options |
|
|
125
127
|
| end | AsyncFunction | options |
|
|
126
128
|
| execute | AsyncFunction | ...args |
|
|
129
|
+
| getProvider | AsyncFunction | |
|
|
127
130
|
| indexes | AsyncFunction | table, options |
|
|
128
131
|
| init | AsyncFunction | options |
|
|
129
132
|
| insert | AsyncFunction | table, fields, options |
|