aboutsummaryrefslogtreecommitdiff
path: root/error.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add one blank line for godocmattn2014-08-181-0/+1
|
* Add license headermattn2014-08-181-0/+4
|
* Fix ErrNoticeRecoverWAL variable name.Christoph Martin2014-04-011-1/+1
|
* Enable extended error codes.Christoph Martin2014-04-011-30/+99
|
* Remove compiler errorEric L. Frederich2013-11-301-2/+1
| | | | I got an error "function ends without a return statement" on go1.0.2
* Provide more detailed error messagesRobert Knight2013-11-191-1/+15
| | | | | | | | | Use the sqlite3_errmsg() API to retrieve more specific error messages. eg. Attempting to exec 'CREATE TABLE ExistingTableName (...)' will now report 'table already exists: ExistingTableName' rather than 'SQL logic error or missing database'
* Start work on introducing machine-readable error codes.Jochen Voss2013-08-301-0/+41
| | | | | | This commit introduces a new type 'ErrNo', implementing the error interface. Constants for all sqlite3 error codes are provided in the new source file "error.go".
* Rervert ff8e6729ce0628c3da97bd8e85c636f3645c2516mattn2013-08-141-41/+0
|
* Start work on introducing machine-readable error codes.Jochen Voss2013-08-131-0/+41
This commit introduces a new type 'ErrNo', implementing the error interface. Constants for all sqlite3 error codes are provided in the new source file "error.go".