Added implementation hdbcli as part of PEP249::PEP249ModuleApiNode

This commit is contained in:
Napalys Klicius
2025-05-01 14:01:33 +02:00
parent 0325f368fe
commit e1fc0ca051
3 changed files with 27 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ from hdbcli import dbapi
conn = dbapi.connect(address="hostname", port=300, user="username", password="password")
cursor = conn.cursor()
cursor.execute("some sql", (42,)) # $ MISSING: getSql="some sql"
cursor.executemany("some sql", (42,)) # $ MISSING: getSql="some sql"
cursor.execute("some sql", (42,)) # $ getSql="some sql"
cursor.executemany("some sql", (42,)) # $ getSql="some sql"
cursor.close()