当前位置:   article > 正文

sqlalchemy执行sql返回数据_sqlachemy execute update 返回值

sqlachemy execute update 返回值

conn=db.execute("select * from users")

conn.close(), resultProxy 用完之后, 需要close

conn.scalar(), 可以返回一个标量查询的值ResultProxy 类是对Cursor类的封装(在文件sqlalchemy\engine\base.py),ResultProxy 类有个属性cursor即对应着原来的

conn.ResultProxy 类有很多方法对应着Cursor类的方法, 另外有扩展了一些属性/方法.resultProxy.fetchall()

conn.fetchmany()

conn.fetchone()

conn.first()

conn.scalar()

conn.returns_rows #True if this ResultProxy returns rows.resultProxy.rowcount #return rows affected by an UPDATE or DELETE statement. It is not intended to provide the number of rows present from a SELECT.


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/180958
推荐阅读
相关标签
  

闽ICP备14008679号