1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00

Merge pull request #3664 from Budibase/oracle/password-fix-hotfix

Fix oracle password config
This commit is contained in:
Rory Powell 2021-12-03 11:13:16 +00:00 committed by GitHub
commit 5b558a662d
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ The `HR` schema is populated with dummy data by default in oracle for testing pu
To connect to the HR schema first update the user password and unlock the account by performing
```sql
ALTER USER hr ACCOUNT UNLOCK;
ALTER USER hr IDENTIFIED BY hr
ALTER USER hr IDENTIFIED BY hr;
```
You should now be able to connect to the hr schema using the credentials hr/hr

View file

@ -381,7 +381,7 @@ module OracleModule {
}`
const attributes: ConnectionAttributes = {
user: this.config.user,
password: this.config.user,
password: this.config.password,
connectString,
}
return oracledb.getConnection(attributes)