import MySQLdb
conn=MySQLdb.connect('127.0.0.1','root','1','asterisk')
cursor=conn.cursor()
cursor.execute('insert intotest(a) values(1)')
print "a"
cursor.close()
conn.commit()//加上这句话就可以了
conn.close()
import MySQLdb
conn=MySQLdb.connect('127.0.0.1','root','1','asterisk')
cursor=conn.cursor()
cursor.execute('insert intotest(a) values(1)')
print "a"
cursor.close()
conn.commit()//加上这句话就可以了
conn.close()
本文标题:python使用mysql 插入数据不成功,不报错
本文链接:https://www.haomeiwen.com/subject/gyyokxtx.html
网友评论