Skip to content

Commit a867a81

Browse files
committed
Update and fix doc links
1 parent 09dbfea commit a867a81

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

doc/api.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ This document shows how to use node-oracledb. This document contains
9292
the API reference in sections 2 - 5 and the user guide in subsequent
9393
sections.
9494

95-
For how to install node-oracledb, see [INSTALL](../INSTALL.md).
95+
For how to install node-oracledb, see [INSTALL](https://github.com/oracle/node-oracledb/blob/master/INSTALL.md).
9696

9797
### Example: Simple SELECT statement implementation in Node.js
9898

@@ -134,7 +134,7 @@ With Oracle's sample HR schema, the output is:
134134
```
135135

136136
There are more examples in the
137-
[examples](https://github.com/oracle/node-oracledb/examples)
137+
[examples](https://github.com/oracle/node-oracledb/tree/master/examples)
138138
directory.
139139

140140
## <a name="errorobj"></a> 2. Errors
@@ -1238,7 +1238,7 @@ The
12381238
has more details, including when to use, and when not to use DRCP.
12391239

12401240
There are a number of Oracle Database `V$` views that can be used to
1241-
monitor DRCP. These are discussed in the documentation and in the
1241+
monitor DRCP. These are discussed in the Oracle documentation and in the
12421242
Oracle white paper
12431243
[PHP Scalability and High Availability](http://www.oracle.com/technetwork/topics/php/php-scalability-ha-twp-128842.pdf).
12441244
This paper also gives more detail on configuring DRCP.
@@ -1375,8 +1375,7 @@ Query result type mappings for Oracle Database types to JavaScript types are:
13751375
columns are fetched as `TIMESTAMP WITH LOCAL TIMEZONE` using
13761376
[OCIDateTime](https://docs.oracle.com/database/121/LNOCI/oci12oty.htm#LNOCI16840).
13771377
When binding a JavaScript Date value in an `INSERT` statement, the date is also inserted as `TIMESTAMP WITH
1378-
LOCAL TIMEZONE` using
1379-
[OCIDateTime](https://docs.oracle.com/database/121/LNOCI/oci12oty.htm#LNOCI16840).
1378+
LOCAL TIMEZONE` using OCIDateTime.
13801379

13811380
### <a name="stmtcache"></a> 7.1.3 Statement Caching
13821381

@@ -1392,8 +1391,7 @@ In general, set the statement cache to the size of the working set of
13921391
statements being executed by the application.
13931392

13941393
The statement cache can be automatically tuned with the
1395-
[oraaccess.xml file](#oraaccess).
1396-
1394+
[External Configuration](#oraaccess) *oraaccess.xml* file.
13971395

13981396
### <a name="bind"></a> 7.2 Bind Parameters for Prepared Statements
13991397

@@ -1562,14 +1560,14 @@ statement is executed irrespective of the value of `isAutoCommit`.
15621560

15631561
When node-oracledb is linked with Oracle 12c client libraries, the Oracle
15641562
client-side configuration file
1565-
[oraaccess.xml](http://docs.oracle.com/database/121/LNOCI/oci10new.htm#LNOCI73053)
1563+
[oraaccess.xml](http://docs.oracle.com/database/121/LNOCI/oci10new.htm#LNOCI73052)
15661564
can be used to configure some behaviors of node-oracledb.
15671565

15681566
For example, oraaccess.xml can be used to:
15691567

15701568
- turn on [Fast Application Notification](http://docs.oracle.com/database/121/ADFNS/adfns_avail.htm#ADFNS538) (FAN) events to enable FAN notifications and [Runtime Load Balancing](http://docs.oracle.com/database/121/ADFNS/adfns_perf_scale.htm#ADFNS515) (RLB)
15711569
- configure [Client Result Caching](http://docs.oracle.com/database/121/ADFNS/adfns_perf_scale.htm#ADFNS464) parameters
1572-
- turn on client auto-tuning
1570+
- turn on [Client Statement Cache Auto-tuning](http://docs.oracle.com/database/121/LNOCI/oci10new.htm#LNOCI73009)
15731571

15741572
Other features can also be enabled. Refer to the
1575-
[oraaccess.xml documentation](http://docs.oracle.com/database/121/LNOCI/oci10new.htm#LNOCI73053)
1573+
[oraaccess.xml documentation](http://docs.oracle.com/database/121/LNOCI/oci10new.htm#LNOCI73052)

0 commit comments

Comments
 (0)