0

所以我有一个正在使用的应用程序,pymysql纯 python mysql 客户端实现。在我做出回应之前,我想强调一个事实,即我不愿意使用不同的 mysql 驱动程序。

我有一个实现由 MySQL 支持的数据结构的模块。该模块的要点如下:

import pymysql
class Whatever:
    def __init__(self):
        # Debug statement
        print dir(pymysql)
        # use the cursors submodule
        self.conn = pymysql.connect( ... , cursorclass=pymysql.cursors.DictCursor)

当我在我的测试文件中导入它时,一切都很好。这是print语句的输出。特别是,我提请您注意游标模块:

['BINARY', 'Binary', 'Connect', 'Connection', 'DATE', 'DATETIME', 'DBAPISet', 'DataError', 
'DatabaseError', 'Date', 'DateFromTicks', 'Error', 'FIELD_TYPE', 'IntegrityError', 
'InterfaceError', 'InternalError', 'MySQLError', 'NULL', 'NUMBER', 'NotSupportedError', 
'OperationalError', 'ProgrammingError', 'ROWID', 'STRING', 'TIME', 'TIMESTAMP', 'Time', 
'TimeFromTicks', 'Timestamp', 'TimestampFromTicks', 'VERSION', 'Warning', '__all__', 
'__builtins__', '__doc__', '__file__', '__name__', '__package__', '__path__', 
'__version__', 'apilevel', 'charset', 'connect', 'connections', 'constants', 'converters', 
'cursors', 'err', 'escape_dict', 'escape_sequence', 'escape_string', 'get_client_info', 
'install_as_MySQLdb', 'paramstyle', 'sys', 'thread_safe', 'threadsafety', 'times', 'util', 
'version_info']

当我从我的主文件中导入模块时,我得到一个AttributeError

Traceback (most recent call last):
  File "xxx.py", line 72, in <module>
    passwd='', db='test_db')
  File "yyy.py", line 26, in __init__
    passwd=passwd, db=db, cursorclass=pymysql.cursors.DictCursor)
AttributeError: 'module' object has no attribute 'cursors'

打印的输出dir如下:

['BINARY', 'Binary', 'Connect', 'Connection', 'DATE', 'DATETIME', 'DBAPISet', 
'DataError', 'DatabaseError', 'Date', 'DateFromTicks', 'Error', 'FIELD_TYPE', 
'IntegrityError', 'InterfaceError', 'InternalError', 'MySQLError', 'NULL', 'NUMBER', 
'NotSupportedError', 'OperationalError', 'ProgrammingError', 'ROWID', 'STRING', 'TIME', 
'TIMESTAMP', 'Time', 'TimeFromTicks', 'Timestamp', 'TimestampFromTicks', 'VERSION', 
'Warning', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', 
'__path__', '__version__', 'apilevel', 'charset', 'connect', 'constants', 'converters', 
'err', 'escape_dict', 'escape_sequence', 'escape_string', 'get_client_info', 
'install_as_MySQLdb', 'paramstyle', 'sys', 'thread_safe', 'threadsafety', 'times', 
'version_info']

值得注意的是,cursors缺席。两种情况下的检查pymysql.__file__都是一样的,输出是:

__init__.py     charset.py  connections.py  constants   converters.pyc  cursors.pyc err.pyc     times.py    util.py
__init__.pyc    charset.pyc connections.pyc converters.py   cursors.py  err.py      tests       times.pyc   util.pyc

显然cursors.py在那里。那么给了什么?

4

1 回答 1

2

您需要import pymysql.cursors在文件顶部添加显式。

cursors包未在pymysql's中列出,__all__因此在您执行时不会导入import pymysql

于 2012-12-26T17:40:50.820 回答