Skip to content

Commit fda2c89

Browse files
Update lab7_data_modeling.txt
1 parent 1ffd342 commit fda2c89

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

data-platform/autonomous-database/autonomous-json/python-duality-views/files/lab7_data_modeling.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Simple Oracle Document Access (SODA) is a set of NoSQL-style APIs that let you c
44

55
How is data stored? Let's connect via sqlplus with root user.
66

7+
=== PLEASE CHANGE YOUR_PASSWORD TO A REAL PASSWORD ! ===
8+
79
sqlplus myapp/YOUR_PASSWORD@localhost:1521/FREEPDB1
810

911
SET LINESIZE 150;
@@ -35,6 +37,7 @@ We can run a select all and we can see all the information, including the JSON d
3537

3638
We can create a table containing JSON data and relational data.
3739

40+
=== PLEASE CHANGE YOUR_PASSWORD TO A REAL PASSWORD ! ===
3841

3942
sqlplus myapp/YOUR_PASSWORD@localhost:1521/FREEPDB1
4043

@@ -312,6 +315,8 @@ import oracledb
312315
oracledb.init_oracle_client()
313316

314317
#connection details
318+
# === PLEASE CHANGE YOUR_PASSWORD TO A REAL PASSWORD ! ===
319+
315320
connection = oracledb.connect(user="myapp",password="YOUR_PASSWORD",dsn="localhost:1521/FREEPDB1")
316321

317322
#connect, create and list collections

0 commit comments

Comments
 (0)