crystal-lang / crystal-sqlite3

SQLite3 bindings for Crystal
MIT License
139 stars 30 forks source link

Fix result set & connection release lifecycle #90

Closed bcardiff closed 1 year ago

bcardiff commented 1 year ago

While working on #87 we noticed that the result set should be released before release the connection.

This wasn't noticed before because connections are usually put back in the pool to be reused.