File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -510,8 +510,10 @@ editions, or require additional database options or packs.
510
510
511
511
Install Node.js from [nodejs.org][88].
512
512
513
- Install node-oracledb using the [Quick Start Node-oracledb
514
- Installation][87] steps.
513
+ Install node-oracledb using the [Quick Start Node-oracledb Installation][87]
514
+ steps. Node-oracledb runs in Node.js, typically as a mid-tier application
515
+ server or service. Node-oracledb applications will not run directly in a
516
+ browser.
515
517
516
518
Download node-oracledb [examples][3] or create a script like the one
517
519
below. As well as [Async/Await](#asyncawaitoverview) functions,
@@ -590,7 +592,7 @@ With Oracle's sample [HR schema][4], the output is:
590
592
591
593
[node-oracledb's SODA API](#sodaoverview) can be used with Oracle Database 18
592
594
and above, when node-oracledb uses Oracle Client 18.5 or Oracle Client 19.3, or
593
- later. Users who have been granted the SODA_APP role.
595
+ later. Users require the CREATE TABLE privilege and the SODA_APP role.
594
596
595
597
```javascript
596
598
// mysoda.js
@@ -645,6 +647,12 @@ async function run() {
645
647
run();
646
648
```
647
649
650
+ Output is:
651
+
652
+ ```
653
+ Sally lives in Melbourne.
654
+ ```
655
+
648
656
## <a name="errorobj"></a> 2. Errors
649
657
650
658
The last parameter of each method is a callback, unless
You can’t perform that action at this time.
0 commit comments