mirror of
https://github.com/github/codeql.git
synced 2026-03-30 20:28:15 +02: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"
|