File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ connection string:
14
14
module.exports = {
15
15
user: "hr",
16
16
password: process.env.NODE_ORACLEDB_PASSWORD,
17
- connectString:"localhost/orclpdb "
17
+ connectString:"localhost/orclpdb1 "
18
18
};
19
19
20
20
```
@@ -33,13 +33,13 @@ connection string:
33
33
example, to load them in the HR schema run:
34
34
35
35
```
36
- sqlplus hr/welcome@localhost/orclpdb @demo.sql
36
+ sqlplus hr/welcome@localhost/orclpdb1 @demo.sql
37
37
```
38
38
39
39
The demonstration objects can be dropped with ` demodrop.sql ` :
40
40
41
41
```
42
- sqlplus hr/welcome@localhost/orclpdb @demodrop.sql
42
+ sqlplus hr/welcome@localhost/orclpdb1 @demodrop.sql
43
43
```
44
44
45
45
## Example Overview
Original file line number Diff line number Diff line change 36
36
* [//]host_name[:port][/service_name][:server_type][/instance_name]
37
37
*
38
38
* Commonly just the host_name and service_name are needed
39
- * e.g. "localhost/orclpdb " or "example.com/XEPDB1"
39
+ * e.g. "localhost/orclpdb1 " or "example.com/XEPDB1"
40
40
*
41
41
* The Easy Connect syntax was enhanced in Oracle Database 19c to
42
42
* allow more options, refer to the documentation:
@@ -84,7 +84,7 @@ module.exports = {
84
84
85
85
// For information on connection strings see:
86
86
// https://oracle.github.io/node-oracledb/doc/api.html#connectionstrings
87
- connectString : process . env . NODE_ORACLEDB_CONNECTIONSTRING || "localhost/orclpdb " ,
87
+ connectString : process . env . NODE_ORACLEDB_CONNECTIONSTRING || "localhost/orclpdb1 " ,
88
88
89
89
// Setting externalAuth is optional. It defaults to false. See:
90
90
// https://oracle.github.io/node-oracledb/doc/api.html#extauth
You can’t perform that action at this time.
0 commit comments