File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -182,19 +182,19 @@ Usage of these constants is described later in this document.
182
182
#### Query result [ outFormat] ( #propdboutformat ) option constants:
183
183
184
184
```
185
- Number ARRAY = 1 // rows as array of column values
185
+ Oracledb. ARRAY // rows as array of column values
186
186
187
- Number OBJECT = 2 // row as objects
187
+ Oracledb. OBJECT // row as objects
188
188
```
189
189
190
190
#### Constants for [ bind parameter] ( #executebindParams ) ` type ` properties:
191
191
192
192
```
193
- Number STRING = 2001 // JavaScript string type
193
+ Oracledb. STRING // JavaScript string type
194
194
195
- Number NUMBER = 2002 // JavaScript number type
195
+ Oracledb. NUMBER // JavaScript number type
196
196
197
- Number DATE = 2003 // JavaScript date type
197
+ Oracledb. DATE // JavaScript date type
198
198
```
199
199
200
200
#### Constants for [ bind parameter] ( #executebindParams ) ` dir ` properties
@@ -203,11 +203,11 @@ These specify whether bound values are passed into or out from the
203
203
database:
204
204
205
205
```
206
- Number BIND_IN = 1 // for IN binds
206
+ Oracledb. BIND_IN // for IN binds
207
207
208
- Number BIND_INOUT = 2 // for IN OUT binds
208
+ Oracledb. BIND_INOUT // for IN OUT binds
209
209
210
- Number BIND_OUT = 3 // or OUT binds
210
+ Oracledb. BIND_OUT // or OUT binds
211
211
212
212
```
213
213
You can’t perform that action at this time.
0 commit comments