V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
scott123
V2EX  ›  Python

完全搞不懂这个错误是什么原因引起的 unsupported operand type(s) for %: 'TableAdmininfo' and 'tuple'

  •  
  •   scott123 · 2016-01-13 11:08:06 +08:00 · 2476 次点击
    这是一个创建于 3027 天前的主题,其中的信息可能已经有所发展或是发生改变。
    class TableAdmininfo(object):
    def __init__(self):
    self.__tables=sqlaction()

    def GetNamePasswd(self,name):
    sql="SELECT passwd from admininfo WHERE username=%s"
    params=(name,)
    return self.__tables.select_fet(self,sql,*params)

    class sqlaction(object):def select_fet(self,sql,*params):
    try:
    conn=MySQLdb.connect(**db_dict)
    cur=conn.cursor(cursorclass=MySQLdb.cursors.DictCursor)
    #sql="SELECT passwd from admininfo WHERE username=%s"
    #params=("jerry",)
    cur.execute(sql,params)
    rows=cur.fetchall()
    print rows
    return rows
    except Exception,e:
    print e
    sys.exit(1)
    finally:
    if conn:
    cur.close()
    conn.close()

    通过第一个类调用第二个类就会爆那个错误,但是直接使用注释的代码执行就没有问题,完全搞不懂怎么回事??并且第二个类在被别的类调用时候完全没有问题啊
    3 条回复    2016-01-13 12:40:40 +08:00
    fy
        1
    fy  
       2016-01-13 11:34:21 +08:00
    楼主先不要慌,切 markdown 排下版

    ```python
    pass
    ```

    虽然代码没有看得很明白,猜测是类型转换问题?楼主你直接把上面那个类对象传进去了?

    - - 建议楼主看一下 PEP8 ,然后用个 ORM 操作数据库,推荐 Peewee 或者 SQLAlchemy
    mulog
        2
    mulog  
       2016-01-13 12:36:47 +08:00
    self.__tables.select_fet(self,sql,*params)
    第一个 self 参数是多余的,你这样写相当于把这个 self (an instance of TableAdmininfo )当作 'sql' 参数传给了 select_fet
    scott123
        3
    scott123  
    OP
       2016-01-13 12:40:40 +08:00
    谢谢二楼,一只没有关注到这里,问题解决,谢谢一楼,学习一下你提到的。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1039 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 25ms · UTC 23:02 · PVG 07:02 · LAX 16:02 · JFK 19:02
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.