You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Determines whether query results should be returned as a
1796
1805
[`ResultSet`](#resultsetclass) object or directly. The default is
1797
-
`false`.
1806
+
*false*.
1798
1807
1799
1808
##### <aname="executecallback"></a> 4.2.5.4 `execute()`: Callback Function
1800
1809
@@ -1824,7 +1833,7 @@ details of columns for the select list. For non queries, this property is undef
1824
1833
1825
1834
Each column's `name` is always given. If the
1826
1835
[`oracledb.extendedMetaData`](#propdbextendedmetadata) or `execute()` option
1827
-
[`extendedMetaData`](#propexecextendedmetadata) are `true` then
1836
+
[`extendedMetaData`](#propexecextendedmetadata) are *true* then
1828
1837
additional information is included.
1829
1838
1830
1839
-`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.
@@ -1865,7 +1874,7 @@ Object resultSet
1865
1874
```
1866
1875
1867
1876
For `SELECT` statements when the [`resultSet`](#executeoptions)
1868
-
option is `true`, use the `resultSet` object to fetch rows. See
1877
+
option is *true*, use the `resultSet` object to fetch rows. See
1869
1878
[ResultSet Class](#resultsetclass).
1870
1879
1871
1880
###### <aname="execrows"></a> 4.2.5.4.4 `rows`
@@ -1875,7 +1884,7 @@ Array rows
1875
1884
```
1876
1885
1877
1886
For `SELECT` statements where the [`resultSet`](#executeoptions) option is
1878
-
`false` or unspecified, `rows` contains an array of fetched rows. It
1887
+
*false* or unspecified, `rows` contains an array of fetched rows. It
1879
1888
will be NULL if there is an error or the SQL statement was not a
1880
1889
SELECT statement. By default, the rows are in an array of column
1881
1890
value arrays, but this can be changed to arrays of objects by setting
@@ -2344,7 +2353,7 @@ CURSOR columns.
2344
2353
2345
2354
Each column's `name` is always given. If the
2346
2355
[`oracledb.extendedMetaData`](#propdbextendedmetadata) or `execute()` option
2347
-
[`extendedMetaData`](#propexecextendedmetadata) are `true` then
2356
+
[`extendedMetaData`](#propexecextendedmetadata) are *true* then
2348
2357
additional information is included.
2349
2358
2350
2359
See [`result.metaData`](#execmetadata) for the available attributes.
@@ -2861,7 +2870,7 @@ with [`connection.close()`](#connectionclose). If `poolMax` has not
2861
2870
been reached, then connections can be satisfied and are not queued.
2862
2871
2863
2872
The pool queue can be disabled by setting the pool property
2864
-
[`queueRequests`](#propdbqueuerequests) to `false`. When the queue is
2873
+
[`queueRequests`](#propdbqueuerequests) to *false*. When the queue is
2865
2874
disabled, `getConnection()` requests to a pool that cannot immediately be
2866
2875
satisfied will return an error.
2867
2876
@@ -3184,7 +3193,7 @@ return a known small number of rows, non-Result Set queries may have
3184
3193
less overhead.
3185
3194
3186
3195
A Result Set is created when the `execute()` option property
3187
-
[`resultSet`](#executeoptions) is `true`. Result Set rows can be
3196
+
[`resultSet`](#executeoptions) is *true*. Result Set rows can be
3188
3197
fetched using [`getRow()`](#getrow) or [`getRows()`](#getrows) on the
0 commit comments