Skip to content

Commit c5fb034

Browse files
committed
Link to Connor's video on how to create a user
1 parent 1f07b3d commit c5fb034

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

INSTALL.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ variable `TNS_ADMIN` to that directory name.
331331

332332
Download the [example programs][19] from GitHub.
333333

334-
Edit `dbconfig.js` and set the database credentials to your
334+
Edit `dbconfig.js` and set the [database credentials][45] to your
335335
environment, for example:
336336

337337
```
@@ -469,7 +469,7 @@ variable `TNS_ADMIN` to that directory name.
469469

470470
Download the [example programs][19] from GitHub.
471471

472-
Edit `dbconfig.js` and set the database credentials to your
472+
Edit `dbconfig.js` and set the [database credentials][45] to your
473473
environment, for example:
474474

475475
```
@@ -587,7 +587,7 @@ relaxed.
587587

588588
Download the [example programs][19] from GitHub.
589589

590-
Edit `dbconfig.js` and set the database credentials to your
590+
Edit `dbconfig.js` and set the [database credentials][45] to your
591591
environment, for example:
592592

593593
```
@@ -708,7 +708,7 @@ variable `TNS_ADMIN` to that directory name.
708708

709709
Download the [example programs][19] from GitHub.
710710

711-
Edit `dbconfig.js` and set the database credentials to your
711+
Edit `dbconfig.js` and set the [database credentials][45] to your
712712
environment, for example:
713713

714714
```
@@ -833,7 +833,7 @@ If you see `MSVCR80.dll` then you need the VS 2005 Redistributable.
833833

834834
Download the [example programs][19] from GitHub.
835835

836-
Edit `dbconfig.js` and set the database credentials to your
836+
Edit `dbconfig.js` and set the [database credentials][45] to your
837837
environment, for example:
838838

839839
```
@@ -925,7 +925,7 @@ variable `TNS_ADMIN` to that directory name.
925925

926926
Download the [example programs][19] from GitHub.
927927

928-
Edit `dbconfig.js` and set the database credentials to your
928+
Edit `dbconfig.js` and set the [database credentials][45] to your
929929
environment, for example:
930930

931931
```
@@ -1083,7 +1083,7 @@ variable `TNS_ADMIN` to that directory name.
10831083

10841084
Download the [example programs][19] from GitHub.
10851085

1086-
Edit `dbconfig.js` and set the database credentials to your
1086+
Edit `dbconfig.js` and set the [database credentials][45] to your
10871087
environment, for example:
10881088

10891089
```
@@ -1205,7 +1205,7 @@ variable `TNS_ADMIN` to that directory name.
12051205

12061206
Download the [example programs][19] from GitHub.
12071207

1208-
Edit `dbconfig.js` and set the database credentials to your
1208+
Edit `dbconfig.js` and set the [database credentials][45] to your
12091209
environment, for example:
12101210

12111211
```
@@ -1607,3 +1607,4 @@ Questions and issues can be posted as [GitHub Issues][10].
16071607
[42]: https://github.com/oracle/node-oracledb/blob/master/doc/api.md#migratev1v2
16081608
[43]: https://github.com/oracle/node-oracledb/blob/master/CHANGELOG.md
16091609
[44]: https://github.com/oracle/node-oracledb/blob/master/doc/api.md
1610+
[45]: https://www.youtube.com/watch?v=WDJacg0NuLo

doc/api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ below. As well as callbacks, node-oracledb can also use
261261
[Promises](#promiseoverview) and [Async/Await](#asyncawaitoverview)
262262
functions.
263263

264-
Locate your Oracle Database username and password, and the database
264+
Locate your Oracle Database [username and password][91], and the database
265265
[connection string](#connectionstrings). The connection string is
266266
commonly of the format `hostname/servicename`, using the hostname
267267
where the database is running and the Oracle Database service name of
@@ -6852,3 +6852,4 @@ When upgrading from node-oracledb version 1.13 to version 2.0:
68526852
[88]: https://nodejs.org/en/download/
68536853
[89]: https://github.com/oracle/node-oracledb/tree/master/examples/dbconfig.js
68546854
[90]: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/admin/getting-started-with-database-administration.html#GUID-5F1E393E-97B8-43BC-BD68-3595251A6F7C
6855+
[91]: https://www.youtube.com/watch?v=WDJacg0NuLo

examples/dbconfig.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* to the database. Production applications should consider using
2424
* External Authentication to avoid hard coded credentials.
2525
*
26+
* To create a database user see https://www.youtube.com/watch?v=WDJacg0NuLo
27+
*
2628
* Applications can set the connectString value to an Easy Connect
2729
* string, or a Net Service Name from a tnsnames.ora file or
2830
* external naming service, or it can be the name of a local Oracle

examples/demo.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
* demo.sql
2020
*
2121
* DESCRIPTION
22-
* Create database objects for the examples
22+
* Create database objects for the examples in your database user account.
23+
*
24+
* The video https://www.youtube.com/watch?v=WDJacg0NuLo
25+
* shows how to create a new database user.
2326
*
2427
* Scripts to create Oracle Database's traditional sample schemas can
2528
* be found at: https://github.com/oracle/db-sample-schemas

0 commit comments

Comments
 (0)