mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
7 lines
136 B
Python
7 lines
136 B
Python
import pyodbc
|
|
|
|
cnxn = pyodbc.connect('DSN=test;PWD=password')
|
|
|
|
cursor = cnxn.cursor()
|
|
cursor.execute("some sql") # $ getSql="some sql"
|