我正在尝试将一些数据插入“结算帐户”表中,我尝试了下面给出的方法。没有错误,数据是如何插入表中的。我在这做错什么吗?我正在使用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))
答案 0 :(得分:1)