SQL插入不起作用(不出现错误)

时间:2016-05-11 15:51:34

标签: python mysql

您好我正在通过python函数创建查询。

当我尝试插入某些值时:会出现一个成功的插入内容,但是当我手动搜索数据库时,我的查询不会显示。

代码是这样的:

@post('/store_artist')
def store_artist():
conn = pymysql.connect(host='localhost', port=3306, user='root', passwd='', db='songs')
c = conn.cursor();
c.execute("SET NAMES 'utf8'");
c.execute("SET CHARACTER SET 'utf8'");
artist_name = request.forms.get('artist_name')
artist_surname = request.forms.get('artist_surname')
artist_bday =  request.forms.get('artist_bday')
artist_id =  request.forms.get('artist_id')
c.execute(("INSERT INTO kalitexnis (ar_taut,onoma,epitheto, etos_gen) VALUES (%s, %s, %s, %s)"),(int(artist_id),artist_name,artist_surname,int(artist_bday))) 
result = c.fetchall()
return "Artist info successfully stored"

有什么想法吗?谢谢

1 个答案:

答案 0 :(得分:1)

您必须在每次conn.commit()insert查询后调用update,以便将更改保存到数据库中。

或者,您可以调用conn.autocommit(True),然后更改将立即保存在数据库中。