aboutsummaryrefslogtreecommitdiff
path: root/error.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build with "go tool" and hackishly bundle code from same package into one ↵EuAndreh2024-08-121-150/+0
| | | | file each
* change angle bracket import to quotes (#868)Hanzhen Yi2021-10-261-1/+1
|
* add SystemErrno to Error (#740)rittneje2019-12-171-2/+17
| | | | | | | | * adding SystemErrno to Error, and fixing error logic when open fails * fix for old versions of libsqlite3 that do not have sqlite3_system_errno defined * fixing pre-processor logic
* Add build constraints for non cgoYasuhiro Matsumoto2019-11-181-1/+1
|
* fix breaking compatibility.Yasuhiro Matsumoto2017-03-211-4/+3
| | | | | | revert cf4bd560f1588d96c502b4c3407fe1a10cef4a28 close #394
* fix buildYasuhiro Matsumoto2017-03-201-2/+2
|
* fix buildYasuhiro Matsumoto2017-03-201-1/+1
|
* go vet && golintYasuhiro Matsumoto2016-11-051-1/+8
|
* go vet && golintYasuhiro Matsumoto2016-11-051-0/+1
|
* 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".