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