aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Fixes package namemattn2013-08-131-1/+1
* Start work on introducing machine-readable error codes.Jochen Voss2013-08-131-11/+15
* call sqlite3_column_blob() before sqlite3_column_bytes()David Hill2013-08-021-1/+1
* go fmtmattn2013-05-111-2/+2
* the SQLiteResult refers to the connection after it should no longer be referr...Russ Cox2013-05-111-4/+10
* Treat int as 64bitmattn2013-04-091-1/+1
* Add int32 type, close #55mattn2013-04-081-0/+2
* Fix #54mattn2013-04-061-0/+8
* Fixed #37mattn2013-02-131-1/+4
* Some older version of sqlite3 does not have SQLITE_OPEN_URI.mattn2013-02-031-3/+11
* Add comments.mattn2013-01-311-18/+44
* add flag SQLITE_OPEN_URI to open. closes #38mattn2013-01-291-1/+2
* Support more of the timestamp formats undestood by SQLiteMicah Stetson2012-12-291-0/+4
* Support time values with nanosecond precisionMicah Stetson2012-12-291-13/+14
* Convert times to UTC before storageMicah Stetson2012-12-291-1/+1
* Fix #33 and #34Micah Stetson2012-12-291-15/+15
* check destination type whether it's *time.Time or not.mattn2012-12-261-7/+14
* No return error when invalid datetime.mattn2012-12-261-1/+1
* fixed last_id/changes. it seems long alignment values.mattn2012-12-071-4/+16
* Add support for extracting `2006-01-02 15:04:05.000` formatted datetime.Dobrosław Żybort2012-11-291-2/+6
* Add support for extracting 2006-01-02 formatted timestamps.lye2012-11-031-1/+5
* Modified for windows support.Carlos Castillo2012-10-271-2/+0
* Fix read of invalid (already freed) memory.John Gallagher2012-10-151-1/+1
* workaround on windows. currently, int64 does not work correctly.mattn2012-09-121-1/+3
* gofmt + fix erroneous t.Errorf("foo:", err) statements to t.Error("foo:", err) .cds2012-09-111-2/+2
* bug fix: Byte slices belong to the caller and so must be copies.Thomas Leske2012-08-201-1/+8
* Handle bool values with "BOOLEAN" columns.jander2012-05-251-2/+5
* Increase busy timeout to 5 seconds.John Gallagher2012-04-071-1/+1
* Handle time.Time values with "timestamp" columns.John Gallagher2012-04-071-6/+36
* merged #11mattn2012-03-121-2/+12
* database/sql expects io.EOF after all rows have been Next'edSven Engelhardt2012-03-021-1/+5
* merged bradfitz's patch. thanks.mattn2012-02-201-11/+15
* For boolean values, marshal true to SQLite 1, not -1lye2012-02-061-1/+1
* Fixing build at tipScott Lawrence2012-01-201-2/+2
* Fixed double free when closing SQLiteStmtAlien Science2012-01-191-4/+0
* Use pkg-config instead of a hardcoded LDFLAGSlye2012-01-101-1/+1
* allow to insert zero-length strings into databaseSven Engelhardt2011-12-021-3/+8
* fix LastInsertId()/RowsAffected().mattn2011-11-151-2/+2
* last inserted row ID, affected rows.mattn2011-11-141-1/+13
* cleanmattn2011-11-141-1/+0
* gofmt.mattn2011-11-111-19/+20
* first import.mattn2011-11-111-0/+253