This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ghaering
Recipients dontbugme, ghaering, gruszczy
Date 2009-12-18.13:54:37
SpamBayes Score 0.00042456196
Marked as misclassified No
Message-id <1261144479.68.0.709365492559.issue7394@psf.upfronthosting.co.za>
In-reply-to
Content
The error code SQLITE_ERROR from SQLite is used for "runtime errors".
These can either be caused by the programmer (table does not exist, SQL
contains errors) or they can be other problems like constraint
violations etc.

To differentiate these we would need to parse the error message returned
by sqlite3_errmsg(). This is a path I don't want to go: it's hard to get
this right across current and future SQLite versions.

So I'm closing this issue as wontfix.
History
Date User Action Args
2009-12-18 13:54:39ghaeringsetrecipients: + ghaering, dontbugme, gruszczy
2009-12-18 13:54:39ghaeringsetmessageid: <1261144479.68.0.709365492559.issue7394@psf.upfronthosting.co.za>
2009-12-18 13:54:37ghaeringlinkissue7394 messages
2009-12-18 13:54:37ghaeringcreate