Skip to content

Instantly share code, notes, and snippets.

Created October 17, 2014 12:36
Show Gist options
  • Save anonymous/7997605274392aa54020 to your computer and use it in GitHub Desktop.
Save anonymous/7997605274392aa54020 to your computer and use it in GitHub Desktop.
In [8]: q = 'select * from user where id=%s'
In [9]: a = '1 union select * from user'
In [10]: sql = q % tuple([conn.literal(a)])
In [11]: sql
Out[11]: "select * from user where id='1 union select * from user'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment