[issue39170] Sqlite3 row_factory for attribute access: NamedRow
Change by Clinton James : -- keywords: +patch pull_requests: +17204 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17768 ___ Python tracker <https://bugs.python.org/issu
[issue39170] Sqlite3 row_factory for attribute access: NamedRow
New submission from Clinton James : Currently, sqlite3 returns rows by tuple or sqlite3.Row for dict-style, index access. I constantly find myself wanting attribute access like namedtuple for rows. I find attribute access cleaner without the brackets and quoting field names. However