doix-db 1.0.21 → 1.0.22
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 +6 -6
- package/lib/DbClient.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
# node-doix-db
|
|
5
5
|
`doix-db` is a plug in for [doix](https://github.com/do-/node-doix) framework implementing a common interface to relational databases. It features:
|
|
6
|
-
* [DbClient](DbClient) — the database API available to `doix` [Job](https://github.com/do-/node-doix/wiki/Job)s;
|
|
7
|
-
* [DbModel](DbModel) — the set of classes representing the database structure;
|
|
8
|
-
* [DbQuery](DbQuery) — a `DbModel` based `SELECT` builder;
|
|
9
|
-
* [DbMigrationPlan](DbMigrationPlan) — a
|
|
10
|
-
* [DbLang](DbLang) — a set of SQL generating functions for miscellaneous application tasks.
|
|
6
|
+
* [DbClient](https://github.com/do-/node-doix-db/wiki/DbClient) — the database API available to `doix` [Job](https://github.com/do-/node-doix/wiki/Job)s;
|
|
7
|
+
* [DbModel](https://github.com/do-/node-doix-db/wiki/DbModel) — the set of classes representing the database structure;
|
|
8
|
+
* [DbQuery](https://github.com/do-/node-doix-db/wiki/DbQuery) — a `DbModel` based `SELECT` builder;
|
|
9
|
+
* [DbMigrationPlan](https://github.com/do-/node-doix-db/wiki/DbMigrationPlan) — a `DbModel` based deployment automation tool;
|
|
10
|
+
* [DbLang](https://github.com/do-/node-doix-db/wiki/DbLang) — a set of SQL generating functions for miscellaneous application tasks.
|
|
11
11
|
|
|
12
|
-
* More information is available at https://github.com/do-/node-doix-db/wiki
|
|
12
|
+
* More information is available at https://github.com/do-/node-doix-db/wiki
|
package/lib/DbClient.js
CHANGED