foxhound 2.0.27 → 2.0.28
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 +5 -3
- package/docs/README.md +4 -4
- package/docs/_brand.json +18 -0
- package/docs/_cover.md +1 -1
- package/docs/_topbar.md +1 -1
- package/docs/_version.json +3 -3
- package/docs/api/README.md +14 -14
- package/docs/dialects/README.md +5 -5
- package/docs/index.html +6 -7
- package/docs/quickstart.md +1 -1
- package/docs/retold-catalog.json +245 -161
- package/docs/retold-keyword-index.json +11916 -6383
- package/docs/schema.md +1 -1
- package/package.json +7 -7
- package/source/Foxhound-Dialects.js +1 -0
- package/source/dialects/Oracle/FoxHound-Dialect-Oracle.js +1218 -0
- package/test/Foxhound-Dialect-Oracle_tests.js +463 -0
- package/docs/css/docuserve.css +0 -327
package/docs/schema.md
CHANGED
|
@@ -143,4 +143,4 @@ Only these columns are modified:
|
|
|
143
143
|
|
|
144
144
|
## Stricture Integration
|
|
145
145
|
|
|
146
|
-
Schemas are typically defined using [Stricture](https://github.com/
|
|
146
|
+
Schemas are typically defined using [Stricture](https://github.com/fable-retold/stricture), a companion tool that generates schema definitions from a DDL-like JSON format. Stricture produces the exact schema array format that FoxHound expects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "foxhound",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.28",
|
|
4
4
|
"description": "A Database Query generation library.",
|
|
5
5
|
"main": "source/FoxHound.js",
|
|
6
6
|
"scripts": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/
|
|
37
|
+
"url": "https://github.com/fable-retold/foxhound.git"
|
|
38
38
|
},
|
|
39
39
|
"keywords": [
|
|
40
40
|
"orm",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"author": "Steven Velozo <steven@velozo.com> (http://velozo.com/)",
|
|
45
45
|
"license": "MIT",
|
|
46
46
|
"bugs": {
|
|
47
|
-
"url": "https://github.com/
|
|
47
|
+
"url": "https://github.com/fable-retold/foxhound/issues"
|
|
48
48
|
},
|
|
49
|
-
"homepage": "https://github.com/
|
|
49
|
+
"homepage": "https://github.com/fable-retold/foxhound",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"pict-docuserve": "^
|
|
52
|
-
"quackage": "^1.
|
|
51
|
+
"pict-docuserve": "^1.4.12",
|
|
52
|
+
"quackage": "^1.3.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"fable": "^3.1.
|
|
55
|
+
"fable": "^3.1.75",
|
|
56
56
|
"typescript": "^5.9.3"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -9,6 +9,7 @@ let getDialects = () =>
|
|
|
9
9
|
tmpDialects.MySQL = require('./dialects/MySQL/FoxHound-Dialect-MySQL.js');
|
|
10
10
|
tmpDialects.MSSQL = require('./dialects/MicrosoftSQL/FoxHound-Dialect-MSSQL.js');
|
|
11
11
|
tmpDialects.PostgreSQL = require('./dialects/PostgreSQL/FoxHound-Dialect-PostgreSQL.js');
|
|
12
|
+
tmpDialects.Oracle = require('./dialects/Oracle/FoxHound-Dialect-Oracle.js');
|
|
12
13
|
tmpDialects.MongoDB = require('./dialects/MongoDB/FoxHound-Dialect-MongoDB.js');
|
|
13
14
|
tmpDialects.DGraph = require('./dialects/DGraph/FoxHound-Dialect-DGraph.js');
|
|
14
15
|
tmpDialects.Solr = require('./dialects/Solr/FoxHound-Dialect-Solr.js');
|