0

我使用 mysqldb 插入一行:

 def insertNewLog(self,uid,beginDate,endDate,logs):
        qry1 = """INSERT INTO logs (owner,createDate,endDate,log) VALUES (%s,%s,%s,%s); """ 
        cursor = self.db.cursor()
        beginDate = int(time.mktime( beginDate.timetuple() ))
        endDate = int(time.mktime( endDate.timetuple()))
        print beginDate
        print endDate 
        cursor.execute(qry1,(uid,beginDate,endDate,logs),)
        print "inserted normally"
        print "Number of rows inserted: %d" % cursor.rowcount

我得到这个输出:

1337720045
1337740625
inserted normally
Number of rows inserted: 1

但是,当我在 mysql shell 中对我的数据库进行选择时,我得到“空集”。我检查了我的 mysql 日志,那里没有任何报告。我有点困惑。

4

1 回答 1

5

您可能应该调用commit()您的数据库连接。否则插入回滚。

于 2012-05-18T21:00:07.707 回答