You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 data. when use result(rows) to do something, it use internal connection to read data, then error occur.
The text was updated successfully, but these errors were encountered:
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 data. when use result(rows) to do something, it use internal connection to read data, then error occur.
The text was updated successfully, but these errors were encountered: