Skip to content

Commit 719e12a

Browse files
committed
Remove tabs and trailing whitespce
1 parent 4c65758 commit 719e12a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/api.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ oracledb.maxRows = 100;
518518
readonly Number oracleClientVersion
519519
```
520520

521-
This readonly property gives a numeric representation of the Oracle client library version.
521+
This readonly property gives a numeric representation of the Oracle client library version.
522522
For version *a.b.c.d.e*, this property gives the number: `(100000000 * a) + (1000000 * b) + (10000 * c) + (100 * d) + e`
523523

524524
##### Example
@@ -882,7 +882,7 @@ Number poolIncrement
882882
```
883883

884884
The number of connections that are opened whenever a connection
885-
request exceeds the number of currently open connections.
885+
request exceeds the number of currently open connections.
886886

887887
This optional property overrides the *Oracledb*
888888
[`poolIncrement`](#propdbpoolincrement) property.
@@ -913,7 +913,7 @@ This optional property overrides the *Oracledb*
913913
Number queueTimeout
914914
```
915915

916-
The number of milliseconds after which connection requests waiting in the
916+
The number of milliseconds after which connection requests waiting in the
917917
connection request queue are terminated. If `queueTimeout` is
918918
set to 0, then queued connection requests are never terminated.
919919

@@ -1095,7 +1095,7 @@ show a value of `null` for this attribute. See
10951095
readonly Number oracleServerVersion
10961096
```
10971097

1098-
This readonly property gives a numeric representation of the Oracle database version.
1098+
This readonly property gives a numeric representation of the Oracle database version.
10991099
For version *a.b.c.d.e*, this property gives the number: `(100000000 * a) + (1000000 * b) + (10000 * c) + (100 * d) + e`
11001100

11011101
#### <a name="propconnstmtcachesize"></a> 4.1.5 stmtCacheSize
@@ -2087,7 +2087,7 @@ oracledb.createPool (
20872087
},
20882088
function(err, pool)
20892089
{
2090-
. . .
2090+
. . .
20912091
```
20922092
20932093
The application can later, on some developer-chosen event, display the
@@ -2574,7 +2574,7 @@ INSERT INTO customers VALUES
25742574
(1001, 'Nichols', SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE (-71.48923,42.72347,NULL), NULL, NULL));
25752575

25762576
COMMIT;
2577-
```
2577+
```
25782578
25792579
Instead of attempting to get `CUST_GEO_LOCATION` by directly calling a
25802580
PL/SQL procedure that returns an `SDO_GEOMETRY` parameter, you could
@@ -3006,7 +3006,7 @@ connection.execute(
30063006
lob.setEncoding('utf8'); // we want text, not binary output
30073007
lob.on('error', function(err) { console.error(err); });
30083008
lob.on('close', function() {
3009-
connection.release(function(err) { if (err) console.error(err.message); });
3009+
connection.release(function(err) { if (err) console.error(err.message); });
30103010
});
30113011

30123012
console.log('Writing to ' + outFileName);
@@ -3452,7 +3452,7 @@ To bind an array in node-oracledb using "bind by name" syntax for insertion into
34523452
connection.execute(
34533453
"BEGIN mypkg.myinproc(:id, :vals); END;",
34543454
{
3455-
id: 1234,
3455+
id: 1234,
34563456
vals: { type: oracledb.NUMBER,
34573457
dir: oracledb.BIND_IN,
34583458
val: [1, 2, 23, 4, 10]

0 commit comments

Comments
 (0)