Add python cx_oracle, phoenixdb, pyodbc models

This commit is contained in:
Sylwia Budzynska
2022-10-11 15:29:57 +02:00
parent 7bcd247128
commit e41d79e37d
6 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
import python
import experimental.meta.ConceptsTest

View File

@@ -0,0 +1,6 @@
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"