有人用过pymysql么?遇到个问题
这种方式可以取出mysql的数据:
self.cursor.execute('call uuidproc(@uuid)')
self.cursor.execute('select @uuid')
r = self.cursor.fetchall()
uuid = r[0][0]
但是这样却不能:
self.cursor.execute('call uuidproc(@uuid);select @uuid;')
r = self.cursor.fetchall()
uuid = r[0][0]
请高人帮忙解答一下。
feveren
11 years, 9 months ago