how to setup database connection from web based Jupiter notebooks to oracle23ai - on OCI Oracle DB 23ai on Oracle Cloud using : Jupiter notebooks cell code
# Connect to the Oracle Database 23ai
un = "vector"
pw = "vector"
cs = "localhost/FREEPDB1"
import oracledb
connection = oracledb.connect(user=un, password=pw, dsn=cs)