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
Fix#705: Clarify ensure_autocommit_off() naming and documentation
The function name ensure_autocommit_off() was confusing because it sets
isolation_level = None, which actually ENABLES autocommit mode in SQLite,
not disables it.
Changes:
- Add new ensure_autocommit_on() method with correct name and docstring
- Keep ensure_autocommit_off() as deprecated alias for backwards compatibility
- Update internal usages (enable_wal(), disable_wal()) to use new method
- Add warnings import for deprecation notice
0 commit comments