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
add strongly-typed sqlite3.connect options to SQLiteBackend
- add timeout, detect_types, isolation_level, check_same_thread,
cached_statements, and uri parameters to SQLiteBackend.__init__
- use Literal type for isolation_level: "DEFERRED", "IMMEDIATE", "EXCLUSIVE", or None
- default isolation_level to "DEFERRED" (sqlite3 default behavior)
- pass all options to sqlite3.connect() in initialize()
- update docstring with parameter descriptions and examples
references sqlite3.connect API: https://docs.python.org/3/library/sqlite3.html
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
0 commit comments