在 Pythonmysqldb
中,我可以将游标声明为字典游标,如下所示:
cursor = db.cursor(MySQLdb.cursors.DictCursor)
这将使我能够cursor
按名称引用循环中的列,如下所示:
for row in cursor: # Using the cursor as iterator
city = row["city"]
state = row["state"]
是否可以使用此 MySQL 连接器创建字典游标? http://dev.mysql.com/doc/connector-python/en/connector-python-example-cursor-select.html
他们的例子只返回一个元组。
我想 MySQL 的创造者最终会为我们做这件事吗?