Skip to content

Commit b80e744

Browse files
committed
Rename webappawait.js
1 parent 1a593ea commit b80e744

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8523,7 +8523,7 @@ async function handleRequest(request, response) {
85238523
}
85248524
```
85258525

8526-
See [webappawait.js][189] for a runnable example.
8526+
See [webapp.js][189] for a runnable example.
85278527

85288528
#### <a name="conpoolsizing"></a> 15.3.1 Connection Pool Sizing
85298529

@@ -16459,5 +16459,5 @@ can be asked at [AskTom][158].
1645916459
[186]: https://static.rainfocus.com/oracle/oow19/sess/1553616880266001WLIh/PF/OOW19_Net_CON4641_1569022126580001esUl.pdf
1646016460
[187]: https://support.oracle.com/epmos/faces/DocumentDisplay?id=207303.1
1646116461
[188]: https://www.oracle.com/pls/topic/lookup?ctx=dblatest&id=TGDBA
16462-
[189]: https://github.com/oracle/node-oracledb/tree/master/examples/webappawait.js
16462+
[189]: https://github.com/oracle/node-oracledb/tree/master/examples/webapp.js
1646316463
[190]: https://www.oracle.com/technetwork/database/options/clustering/applicationcontinuity/continuous-service-for-apps-on-atpd-5486113.pdf

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ File Name | Description
108108
[`sessiontagging2.js`](sessiontagging2.js) | More complex example of pooled connection tagging for setting session state
109109
[`soda1.js`](soda1.js) | Basic Simple Oracle Document Access (SODA) example
110110
[`version.js`](version.js) | Shows the node-oracledb version attributes
111-
[`webappawait.js`](webappawait.js) | A simple web application using a connection pool
111+
[`webapp.js`](webapp.js) | A simple web application using a connection pool

examples/connectionpool.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* Shows connection pool usage. Connection pools are recommended
2323
* for applications that use a lot of connections for short periods.
2424
*
25-
* Other connection pool examples are in sessionfixup.js and webappawait.js.
25+
* Other connection pool examples are in sessionfixup.js and webapp.js.
2626
* For a standalone connection example, see connect.js
2727
*
2828
* In some networks forced pool termination may hang unless you have

examples/example.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* DESCRIPTION
2222
* A basic node-oracledb example using Node.js 8's async/await syntax.
2323
*
24-
* For connection pool examples see connectionpool.js and webappawait.js
24+
* For connection pool examples see connectionpool.js and webapp.js
2525
* For a ResultSet example see resultset1.js
2626
* For a query stream example see selectstream.js
2727
*

examples/webappawait.js renamed to examples/webapp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*
1818
* NAME
19-
* webappawait.js
19+
* webapp.js
2020
*
2121
* DESCRIPTION
2222
* A web based application displaying banana harvest details.

0 commit comments

Comments
 (0)