Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 python 中使用 MySQLdb 连接到 mysql 数据库(duh),我真的缺少 PHP 内置的功能,即:
mysql_fetch_array和mysql_fetch_object
mysql_fetch_array
mysql_fetch_object
Python 中的等价物是什么,以便我可以开始移植我的脚本?
我正在寻找的是DictCursor:
DictCursor
cur = con.cursor(MySQLdb.cursors.DictCursor)