使用 mysql.connector 将数据插入 mysql 数据库

Insert data in to mysql db using mysql.connector

我正在尝试将一些数据插入 table "billing accounts" 并且我尝试了下面给出的方法。没有错误,但是数据没有被插入 table。我在这里做错了什么吗?我正在使用 python 的 mysql.connector 模块来完成这项工作。

def billingaccounts(self,stag,prod):

    print "Updating the consilidated daily bills for stag and prod"
    cursor = self.testdb.cursor()
    stag = 87
    prod = 45
    now = '2016-06-03'
    to = 84
    cursor.execute('INSERT INTO iaas.billing_accounts (date, staging_account, production_acount, total) VALUES (%s, %s, %s, %s)',(now,stag,prod,to))

您必须向服务器发送提交才能看到更改。

https://dev.mysql.com/doc/connector-python/en/connector-python-api-mysqlconnection-commit.html