mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
7 lines
221 B
Python
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"
|