records icon indicating copy to clipboard operation
records copied to clipboard

SQL for Humans™

Results 68 records issues
Sort by recently updated
recently updated
newest added

**Incompatible Issues** - ImportError: Pandas requires version '2.6.0' or newer of 'openpyxl' (version '2.4.11' currently installed). - records 0.5.3 requires openpyxl

records.Database.query can't return affected rowcounts? How can I do when I need to get affected rowcounts after executing update or delete commands?

Compatible with SQLAlchemy 1.4.*

**The problem** The code was iterating on the list 'outputs' manually using for i, element in enumerate(outputs ```python for i in range(len(row)) ``` and accessing the data manually as: ```python...

records python3 is not compatible with new sqlalchemy release 1.4.0 (#208) https://github.com/kennethreitz/records/issues/208 but versions of sqlalchemy older than 1.4.0 are not compatible with Python 3.8+: module 'time' has no attribute...

when execute examples/randomuser-sqlite.py, python report 'Cannot operate on a closed database'. when rows = db.query(...) is executed, maybe the internal connection is disposed. but the result(rows) is a generator, not...

I am getting the following error when trying to parse the results of a query. Digging into this more, this seems to be an issue with compatibility with the new...

I see records will be upgraded to v5.3 supporting the connection pool. But it does not support lazy loading that the tests not cover. However, when running the example it...

bug

This should fix the issue outlined in https://github.com/kennethreitz/records/issues/128. Essentially, SQLAlchemy connections were being closed prior to their results being consumed by `RecordCollections`. Connections spawned by `Database` query methods are configured...