#!/usr/bin/python
# -*- coding: UTF-8 -*-
import MySQLdb
# 打开数据连接
db = MySQLdb.connect('localhost', 'root', '', 'test')
# 使用cursor()方法获取操作游标
cursor = db.cursor()
# 使用 execute() 执行sql语句
username = 'wood444'
sex = 4
sql = """INSERT INTO test(name,sex) VALUES ('%s', '%d')""" % (username, sex)
try:
cursor.execute(sql)
db.commit()
except:
db.rollback()
print "insert error!"
db.close()