Files
codeql/python/ql/test/library-tests/frameworks/cx_Oracle/pep249.py
2022-10-13 12:36:41 +02:00

7 lines
221 B
Python

import cx_Oracle
connection = cx_Oracle.connect(user="hr", password="pwd",
dsn="dbhost.example.com/orclpdb1")
cursor = connection.cursor()
cursor.execute("some sql") # $ getSql="some sql"