首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >MySQL连接器/Python存储过程插入未提交

MySQL连接器/Python存储过程插入未提交
EN

Stack Overflow用户
提问于 2013-06-10 01:28:50
回答 1查看 6.8K关注 0票数 4

我正在编写一个python脚本来监控树莓派上的几个1wire传感器,并将结果存储在MySQL数据库中。使用Python/ MySQL库,我可以成功地连接到数据库,并运行查询,但是事务似乎没有完全提交。我知道查询运行成功,因为out参数被设置为新的自动递增的ID。

代码语言:javascript
复制
CREATE TABLE `lamp`.`sensors` (
 `SensorID` int(11) unsigned NOT NULL AUTO_INCREMENT,
 `SensorSerial` char(15) NOT NULL,
 `SensorFamily` tinyint(4) NOT NULL,
 PRIMARY KEY (`SensorID`),
 UNIQUE KEY `SensorID_UNIQUE` (`SensorID`),
 UNIQUE KEY `SensorSerial_UNIQUE` (`SensorSerial`)
)

CREATE PROCEDURE `lamp`.`AddSensor` (sensorSerial char(15),
                         sensorFamily tinyint, out returnValue int)
BEGIN
 INSERT INTO sensors (SensorSerial,SensorFamily) VALUES (sensorSerial,sensorFamily);
 SET returnValue=LAST_INSERT_ID();
END

但是,当我尝试查询表(Select * from sensors)时,得到的结果为0。如果我从MySQL工作台或.Net应用程序运行该过程,一切都会按预期进行。这意味着当涉及到连接器/Python时,我遗漏了一些东西,但我不知道是什么。我感到非常困惑,因为自动增量值确实增加了,但没有添加任何记录。也没有报告错误

代码语言:javascript
复制
 def Test(self):
    #this line works fine
    #self.RunProcedure("INSERT INTO sensors (SensorSerial,SensorFamily) VALUES ('{0}',{1})".format(self.ID,self.Family),False,())
    #this line does not?
    args=self.RunProcedure('AddSensor',True,(self.ID,self.Family,-1))
    if args[2]>=1:
        logging.debug("Successfully added sensor data '{1}' for sensor '{0}' to the database".format(self.ID,value))
        return True
    else:
        logging.critical("Failed to add Data to Database for unknown reason. SensorID: {0} Type: {1} Data:{2}".format(self.ID,self.Family,value))

def RunProcedure(self,proc,isStored,args):
    try:
        logging.debug("Attempting to connect to database.")
        connection=mysql.connector.connect(user='root',password='1q2w3e4r',host='localhost',database='LAMP')
    except mysql.connector.Error as e:
        logging.exception("Failed to connect to mysql database.\r\n {0}".format(e))
    else:
        logging.debug("Successfully connected to database.")
        try:
            cursor=connection.cursor()
            if isStored:
                args = cursor.callproc(proc,args)
                return args
            else:
                cursor.execute(proc,args)
            #these do not seem to solve the issue.
            #cursor.execute("Commit;")
            #connection.commit()
        except mysql.connector.Error as e:
            logging.exception("Exception while running the command '{0}' with the args of '{1}' exception is {2}".format(proc,args,e))
        finally:
            logging.debug("Closing connection to database")
            cursor.close()
            connection.close()

从到日志的输出如下所示;

代码语言:javascript
复制
2013-06-09 13:21:25,662 Attempting to connect to database.
2013-06-09 13:21:25,704 Successfully connected to database.
2013-06-09 13:21:25,720 Closing connection to database
2013-06-09 13:21:25,723 Successfully added sensor data '22.25' for sensor '10.85FDA8020800' to the database

**编辑

不知道为什么,但是将autocommit=True添加到connection.open参数似乎已经解决了这个问题。既然提交是一个问题,为什么connection.commit()或cursor.execute('commit;')没有纠正这个问题呢?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-07-09 16:23:41

问题实际上出在您的代码中:

代码语言:javascript
复制
    ..
    try:
        cursor=connection.cursor()
        if isStored:
            args = cursor.callproc(proc,args)
            return args
        else:
            cursor.execute(proc,args)
        connection.commit()
    except mysql.connector.Error as e:
    ..

如果您正在使用存储的例程,您将立即返回,因此将永远不会调用commit()。

票数 8
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/17012274

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档