Merge pull request #4820 from RasmusWL/add-pymysql-modeling

Approved by yoff
This commit is contained in:
CodeQL CI
2020-12-14 03:04:24 -08:00
committed by GitHub
9 changed files with 46 additions and 4 deletions

View File

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

View File

@@ -0,0 +1,5 @@
import pymysql
connection = pymysql.connect(host="localhost", user="user", password="passwd")
cursor = connection.cursor()
cursor.execute("some sql", (42,)) # $ getSql="some sql"