0

「請求先アカウント」テーブルにデータを挿入しようとしていますが、以下の方法を試しました。データがテーブルに挿入されていないにもかかわらず、エラーはありませんでした。私はここで何か間違っていますか?この作業には 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))
4

1 に答える 1

1

変更を確認するには、コミットをサーバーに送信する必要があります。

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

于 2016-06-30T07:29:22.227 に答える