-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-24139: Add support for SQLite extended result codes #28076
bpo-24139: Add support for SQLite extended result codes #28076
Conversation
This PR uses a different approach than Aviv's proposed patch in bpo. I use |
a4daae8
to
0275ffd
Compare
from the tests:
|
Yes, |
PTAL, @dimaqq :) |
🤖 New build scheduled with the buildbot fleet by @erlend-aasland for commit 63347d8 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
The |
SQLITE_CONSTRAINT_ROWID, SQLITE_READONLY_DBMOVED, and SQLITE_AUTH_USER
The SQLITE_RANGE error indices that the parameter number argument to one of the sqlite3_bind routines or the column number in one of the sqlite3_column routines is out of range. This should be considered a misuse of the SQLite API, so we translate it to InterfaceError, as defined by PEP 249.
Let me know if you have further remarks, @pablogsal :) |
https://bugs.python.org/issue24139