Skip to content

Instantly share code, notes, and snippets.

@yusuke
Created February 6, 2014 10:12
Show Gist options
  • Save yusuke/8841574 to your computer and use it in GitHub Desktop.
Save yusuke/8841574 to your computer and use it in GitHub Desktop.
__author__ = 'yusuke'
import sqlite3
con = sqlite3.connect("emp.db")
sql = u"insert into emp values (?)"
con.execute(sql, '\'')
con.execute(sql, '\"')
con.commit()
con.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment