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 executescript and interrupt NotSupportedError stubs across sync + async surfaces
stdlib ``sqlite3.Connection`` and ``sqlite3.Cursor`` both
expose ``executescript``; ``sqlite3.Connection`` also
exposes ``interrupt``. aiosqlite mirrors all three on the
async surface. Cross-driver code that ports from stdlib /
aiosqlite hit bare ``AttributeError`` — escapes
``except dbapi.Error:`` and the SA dialect cannot
translate.
Add ``NotSupportedError`` stubs (NOT real implementations)
on all four surfaces (sync Connection / sync Cursor /
async Connection / async Cursor) so the failure stays in
the dbapi error hierarchy. Same shape as the existing
TPC / load_extension / backup / iterdump / create_*
stubs.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments