go-sqlite icon indicating copy to clipboard operation
go-sqlite copied to clipboard

SQLite Library for Go

Results 4 go-sqlite issues
Sort by recently updated
recently updated
newest added

Many new important features will land in go1.8. Please see document: https://docs.google.com/document/d/1F778e7ZSNiSmbju3jsEWzShcb8lIO4kDyfKDNm4PNd8/edit?usp=sharing for the full list. Because these features are new we want drivers to implement them before they are...

For compiling sqlite-3.8.7.2, in the file: lib/codec.c replace sqlite3Error(...) function call with sqlite3ErrorWithMsg(...). Compilation goes successfully with the above changes. However, when I do "go test" it fails, for TestTail...

When I run "go test" on this package it failed, with the following: ============================================ failure: 1 === RUN TestTail --- FAIL: TestTail (0.00s) sqlite3_test.go:703: 711: s.Tail is a pointer into...

I've been using your driver to do some post-processing analysis on various sqlite databases I have. The analysis involves many queryies, table creation, insertions, etc. To the best of my...