@@ -27,7 +27,7 @@ limitations under the License.
27
27
- 3.1.2 [ Node-oracledb Type Constants] ( #oracledbconstantsnodbtype )
28
28
- [ ` BLOB ` ] ( #oracledbconstantsnodbtype ) , [ ` BUFFER ` ] ( #oracledbconstantsnodbtype ) , [ ` CLOB ` ] ( #oracledbconstantsnodbtype ) , [ ` CURSOR ` ] ( #oracledbconstantsnodbtype ) , [ ` DATE ` ] ( #oracledbconstantsnodbtype ) , [ ` DEFAULT ` ] ( #oracledbconstantsnodbtype ) , [ ` NUMBER ` ] ( #oracledbconstantsnodbtype ) , [ ` STRING ` ] ( #oracledbconstantsnodbtype )
29
29
- 3.1.3 [ Oracle Database Type Constants] ( #oracledbconstantsdbtype )
30
- - [ ` DB_TYPE_BINARY_DOUBLE ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_BINARY_FLOAT ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_BLOB ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_CLOB ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_DATE ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_CHAR ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_NUMBER ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_RAW ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_ROWID ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMPLTZ ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMPTZ ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMP ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_VARCHAR ` ] ( #oracledbconstantsdbtype )
30
+ - [ ` DB_TYPE_BINARY_DOUBLE ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_BINARY_FLOAT ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_BLOB ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_CLOB ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_DATE ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_CHAR ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_NUMBER ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_RAW ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_ROWID ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMP_LTZ ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMP_TZ ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_TIMESTAMP ` ] ( #oracledbconstantsdbtype ) , [ ` DB_TYPE_VARCHAR ` ] ( #oracledbconstantsdbtype )
31
31
- 3.1.4 [ Execute Bind Direction Constants] ( #oracledbconstantsbinddir )
32
32
- [ ` BIND_IN ` ] ( #oracledbconstantsbinddir ) , [ ` BIND_INOUT ` ] ( #oracledbconstantsbinddir ) , [ ` BIND_OUT ` ] ( #oracledbconstantsbinddir )
33
33
- 3.2 [ Oracledb Properties] ( #oracledbproperties )
@@ -329,12 +329,12 @@ Oracledb.DB_TYPE_BINARY_FLOAT // (100) BINARY_FLOAT
329
329
330
330
Oracledb.DB_TYPE_BLOB // (113) BLOB
331
331
332
+ Oracledb.DB_TYPE_CHAR // (96) CHAR
333
+
332
334
Oracledb.DB_TYPE_CLOB // (112) CLOB
333
335
334
336
Oracledb.DB_TYPE_DATE // (12) DATE
335
337
336
- Oracledb.DB_TYPE_CHAR // (96) CHAR
337
-
338
338
Oracledb.DB_TYPE_NUMBER // (2) NUMBER or FLOAT
339
339
340
340
Oracledb.DB_TYPE_RAW // (23) RAW
@@ -343,9 +343,9 @@ Oracledb.DB_TYPE_ROWID // (104) ROWID
343
343
344
344
Oracledb.DB_TYPE_TIMESTAMP // (187) TIMESTAMP
345
345
346
- Oracledb.DB_TYPE_TIMESTAMPLTZ // (232) TIMESTAMP WITH LOCAL TIME ZONE
346
+ Oracledb.DB_TYPE_TIMESTAMP_LTZ // (232) TIMESTAMP WITH LOCAL TIME ZONE
347
347
348
- Oracledb.DB_TYPE_TIMESTAMPTZ // (188) TIMESTAMP WITH TIME ZONE
348
+ Oracledb.DB_TYPE_TIMESTAMP_TZ // (188) TIMESTAMP WITH TIME ZONE
349
349
350
350
Oracledb.DB_TYPE_VARCHAR // (1) VARCHAR2
351
351
```
@@ -1561,7 +1561,7 @@ additional information is included.
1561
1561
- ` fetchType ` : one of the [ Node-oracledb Type Constant] ( #oracledbconstantsnodbtype ) values.
1562
1562
- ` dbType ` : one of the [ Oracle Database Type Constant] ( #oracledbconstantsdbtype ) values.
1563
1563
- ` byteSize ` : the database byte size. This is only set for ` DB_TYPE_VARCHAR ` , ` DB_TYPE_CHAR ` and ` DB_TYPE_RAW ` column types.
1564
- - ` precision ` : set only for ` DB_TYPE_NUMBER ` , ` DB_TYPE_TIMESTAMP ` , ` DB_TYPE_TIMESTAMPTZ ` and ` DB_TYPE_TIMESTAMPLTZ ` columns.
1564
+ - ` precision ` : set only for ` DB_TYPE_NUMBER ` , ` DB_TYPE_TIMESTAMP ` , ` DB_TYPE_TIMESTAMP_TZ ` and ` DB_TYPE_TIMESTAMP_LTZ ` columns.
1565
1565
- ` scale ` : set only for ` DB_TYPE_NUMBER ` columns.
1566
1566
- ` nullable ` : indicates whether ` NULL ` values are permitted for this column.
1567
1567
0 commit comments