Umberto Morretti

- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created MySQL + pymysql : SQL syntax highlighter stumbles on %s and %(parameter_name)s bind variables in SQL
When I do import pymysql # obtain connection .. cursor.execute("INSERT INTO t (a,b) VALUES (%s, %d)", (a, b)) or import pymysql # obtain connection .. params = { 'a' : a, 'b' : b } cursor.execu...