ZeroKnight / ZeroBot

My personal IRC/Multi-protocol Bot created (and re-created) for education and amusement.
MIT License
1 stars 0 forks source link

Use `sqlite3.Row` in database operations #22

Closed ZeroKnight closed 3 years ago

ZeroKnight commented 3 years ago

Using sqlite3.Row, we can index returned columns by name instead of by index; this both reads better and is resistant to column reordering within a table. They also support the same relevent operations as plain tuples.