我正在尝试打开一个指向 MySQL-DB 的游标。但我收到了这个错误:
'NoneType' object has no attribute 'cursor'
这是一个小源代码:
class Sample:
def __init__(self):
self.conn = None
self.value = self.setValue()
def connect(self):
self.conn = MySQLdb.connect(...)
#cursor = self.conn.cursor()
#cursor.execute("SELECT ...")
#value = str(cursor.fetchone()[0])
#raise Exception(value)
#cursor.close() <- here everything is working fine
def setValue(self):
if (self.conn == None):
self.connect()
#raise Exception(self.conn.open)
cursor = self.conn.cursor() # ERROR: 'NoneType' object has no attribute 'cursor'
...
如果我使用异常,我会得到一个 1 ... 连接已打开。
如果我在“连接”函数中创建游标和 SQL 语句,一切都运行良好。
奇怪的是,一切看起来都是正确的,对于具有相同功能的其他一些连接,一切都运行良好,也是。我不知道如何解决这个错误。我希望有人能指出我正确的方向。