我使用 python 2.7 和 MySQL 作为数据库。在我的 python 程序中有这样的INSERT
查询:
cursor.execute("insert into login(username,passw)values('"+i.username+"','"+i.password+"')")
result=cursor.execute("select * from login")
print cursor.fetchall()
当我检查数据库时,没有条目。但是在我的python代码中选择之后,当我打印结果时,它会显示插入的数据。我也没有使用任何交易声明。