aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_test.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-08-11use amalgamation 3.14.0Yasuhiro Matsumoto2-356/+271
2016-08-11update amalgamation codeYasuhiro Matsumoto5-3702/+13949
2016-05-14upgrade sqlite amalgamation to 3.12.2Steffen3-7153/+10536
2016-04-23Bump Travis to Ubuntu 14.04Zbigniew Mandziejewicz1-1/+3
2016-04-23FTS4 is not available on TrustyZbigniew Mandziejewicz2-1/+5
2016-04-23Test with libsqlite3Zbigniew Mandziejewicz1-1/+4
2016-04-23Set SQLITE_DETERMINISTIC if undefinedZbigniew Mandziejewicz1-0/+4
2016-04-18Fix inconsistent tx state with database/sql.sqweek1-0/+6
The semantics of sql.Tx.Commit impose that the transaction is finished and cleaned up by the time the driver's Commit function returns. However sqlite3 leaves the transaction open if COMMIT fails due to an SQLITE_BUSY error, so *we* must clean it up. Closes #184.
2016-04-18Instructions for libsqlite3 on OS XZbigniew Mandziejewicz1-0/+5
2016-04-18Disable LoadExtension when omit_load_extension is specifiedZbigniew Mandziejewicz1-1/+2
2016-04-18Disable LoadExtension when omit_load_extension is specifiedZbigniew Mandziejewicz2-1/+5
2016-04-18Expose LoadExtension with entry pointZbigniew Mandziejewicz1-0/+24
2016-04-18delete needless filesYasuhiro Matsumoto3-195213/+0
2016-04-14add missing error checking to simple exampleStani1-2/+16
2016-04-02Move sqlite3 amalgation files a directory up.David Bariod5-5/+195219
The purpose is to ease the use of vendoring files like godep. The C sqlite3 files have been added a go compilation conditional flag Fix #293
2016-03-24Fix sqlite "regexp" function name in documentationTim Retout1-1/+1
2016-03-15Remove gocovYasuhiro Matsumoto1-1/+0
2016-03-14Fix testing message at TestInsert and TestUpdateyoza1-2/+2
2016-03-07Test SQLiteRows.DeclTypes()Zac Medico1-0/+35