Skip to content

Commit c474722

Browse files
committed
Use oracledb.extendedMetaData as base reference
1 parent f66c22d commit c474722

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

doc/api.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ Constants for `execute()` [bind parameter](#executebindParams) and
295295
[Lob](#proplobtype) `type` properties, for
296296
[`fetchAsString`](#propdbfetchasstring) and
297297
[`fetchInfo`](#propexecfetchinfo), and for
298-
[extended metadata](#propexecextendedmetadata).
298+
[extended metadata](#propdbextendedmetadata).
299299

300300
Not all constants can be used in all places.
301301

@@ -319,7 +319,7 @@ Oracledb.STRING // (2001) Bind as JavaScript string type
319319

320320
#### <a name="oracledbconstantsdbtype"></a> 3.1.3 Oracle Database Type Constants
321321

322-
These types are shown in [extended metadata](#propexecextendedmetadata)
322+
These types are shown in [extended metadata](#propdbextendedmetadata)
323323
for queries and REF CURSORS. They indicate the Oracle database type.
324324

325325
```
@@ -1552,8 +1552,9 @@ Array metaData
15521552
For `SELECT` statements, this contains an array of objects describing
15531553
details of columns for the select list. For non queries, this property is undefined.
15541554

1555-
Each column's `name` is always given. If the execute option
1556-
[`extendedMetaData`](#propexecextendedmetadata) is `true` then
1555+
Each column's `name` is always given. If the *Oracledb*
1556+
[`extendedMetaData`](#propdbextendedmetadata) or `execute()` option
1557+
[`extendedMetaData`](#propexecextendedmetadata) are `true` then
15571558
additional information is included.
15581559

15591560
- `name`: The column name follows Oracle's standard name-casing rules. It will commonly be uppercase, since most applications create tables using unquoted, case-insensitive names.
@@ -1976,8 +1977,9 @@ Array metaData
19761977
Contains an array of objects with metadata about the query or REF
19771978
CURSOR columns.
19781979

1979-
Each column's `name` is always given. If the `execute()` option
1980-
[`extendedMetaData`](#propexecextendedmetadata) is `true` then
1980+
Each column's `name` is always given. If the *Oracledb*
1981+
[`extendedMetaData`](#propdbextendedmetadata) or `execute()` option
1982+
[`extendedMetaData`](#propexecextendedmetadata) are `true` then
19811983
additional information is included.
19821984

19831985
See [`result.metaData`](#execmetadata) for the available attributes.

0 commit comments

Comments
 (0)