oracle-gopher
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "oracle-gopher", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Boilerplate Node.js middleware that facilitates connections and transactions with Oracle databases.", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -62,6 +62,6 @@ # oracle-gopher | ||
var garden = { | ||
dbStatement : "SELECT * FROM DUAL", //mandatory | ||
dbStatement : "SELECT dummy FROM DUAL WHERE dummy = :DummyValue", //mandatory | ||
outputFormat : "array", //not mandatory. will use default if not explicitly set. | ||
maxRowsReturned : 100, //not mandatory. will use default if not explicitly set. | ||
bindVariables : {} //not mandatory. use in conjunction with dbStatement when bind variables are present. | ||
bindVariables : {"DummyValue" : "X"} //not mandatory. use in conjunction with dbStatement when bind variables are present. | ||
}; | ||
@@ -68,0 +68,0 @@ |
44843