Python: Add support for pymssql package

I also forgot to mention `PyMySQL` in frameworks.rst
This commit is contained in:
Rasmus Wriedt Larsen
2022-10-10 13:58:21 +02:00
parent b1d33a404c
commit 4ee71ae4a1
7 changed files with 40 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,6 @@
import pymssql
connection = pymssql.connect(host="localhost", user="user", password="passwd")
cursor = connection.cursor()
cursor.execute("some sql", (42,)) # $ getSql="some sql"
cursor.executemany("some sql", [(42,)]) # $ MISSING: getSql="some sql"