@@ -27,7 +27,7 @@ limitations under the License.
2727 - 3.1.2 [ Node-oracledb Type Constants] ( #oracledbconstantsnodbtype )
2828 - [ ` BLOB ` ] ( #oracledbconstantsnodbtype ) , [ ` BUFFER ` ] ( #oracledbconstantsnodbtype ) , [ ` CLOB ` ] ( #oracledbconstantsnodbtype ) , [ ` CURSOR ` ] ( #oracledbconstantsnodbtype ) , [ ` DATE ` ] ( #oracledbconstantsnodbtype ) , [ ` DEFAULT ` ] ( #oracledbconstantsnodbtype ) , [ ` NUMBER ` ] ( #oracledbconstantsnodbtype ) , [ ` STRING ` ] ( #oracledbconstantsnodbtype )
2929 - 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 )
3131 - 3.1.4 [ Execute Bind Direction Constants] ( #oracledbconstantsbinddir )
3232 - [ ` BIND_IN ` ] ( #oracledbconstantsbinddir ) , [ ` BIND_INOUT ` ] ( #oracledbconstantsbinddir ) , [ ` BIND_OUT ` ] ( #oracledbconstantsbinddir )
3333 - 3.2 [ Oracledb Properties] ( #oracledbproperties )
@@ -329,12 +329,12 @@ Oracledb.DB_TYPE_BINARY_FLOAT // (100) BINARY_FLOAT
329329
330330Oracledb.DB_TYPE_BLOB // (113) BLOB
331331
332+ Oracledb.DB_TYPE_CHAR // (96) CHAR
333+
332334Oracledb.DB_TYPE_CLOB // (112) CLOB
333335
334336Oracledb.DB_TYPE_DATE // (12) DATE
335337
336- Oracledb.DB_TYPE_CHAR // (96) CHAR
337-
338338Oracledb.DB_TYPE_NUMBER // (2) NUMBER or FLOAT
339339
340340Oracledb.DB_TYPE_RAW // (23) RAW
@@ -343,9 +343,9 @@ Oracledb.DB_TYPE_ROWID // (104) ROWID
343343
344344Oracledb.DB_TYPE_TIMESTAMP // (187) TIMESTAMP
345345
346- Oracledb.DB_TYPE_TIMESTAMPLTZ // (232) TIMESTAMP WITH LOCAL TIME ZONE
346+ Oracledb.DB_TYPE_TIMESTAMP_LTZ // (232) TIMESTAMP WITH LOCAL TIME ZONE
347347
348- Oracledb.DB_TYPE_TIMESTAMPTZ // (188) TIMESTAMP WITH TIME ZONE
348+ Oracledb.DB_TYPE_TIMESTAMP_TZ // (188) TIMESTAMP WITH TIME ZONE
349349
350350Oracledb.DB_TYPE_VARCHAR // (1) VARCHAR2
351351```
@@ -1561,7 +1561,7 @@ additional information is included.
15611561- ` fetchType ` : one of the [ Node-oracledb Type Constant] ( #oracledbconstantsnodbtype ) values.
15621562- ` dbType ` : one of the [ Oracle Database Type Constant] ( #oracledbconstantsdbtype ) values.
15631563- ` 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.
15651565- ` scale ` : set only for ` DB_TYPE_NUMBER ` columns.
15661566- ` nullable ` : indicates whether ` NULL ` values are permitted for this column.
15671567
0 commit comments