Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Build with "go tool" and hackishly bundle code from same package into one ↵ | EuAndreh | 2024-08-12 | 1 | -85/+0 |
| | | | | file each | ||||
* | change angle bracket import to quotes (#868) | Hanzhen Yi | 2021-10-26 | 1 | -1/+1 |
| | |||||
* | Add build constraints for non cgo | Yasuhiro Matsumoto | 2019-11-18 | 1 | -1/+1 |
| | |||||
* | Improve readability of Backup() | codesoap | 2019-10-31 | 1 | -3/+3 |
| | |||||
* | fix breaking compatibility. | Yasuhiro Matsumoto | 2017-03-21 | 1 | -2/+2 |
| | | | | | | revert cf4bd560f1588d96c502b4c3407fe1a10cef4a28 close #394 | ||||
* | fix build | Yasuhiro Matsumoto | 2017-03-20 | 1 | -2/+2 |
| | |||||
* | go vet && golint | Yasuhiro Matsumoto | 2016-11-05 | 1 | -4/+10 |
| | |||||
* | fix double free in SQLiteBackup.Close() on error | Joe Shaw | 2016-10-27 | 1 | -2/+7 |
| | | | | | | | | | | | The sqlite3_backup_finish() function never fails, it just returns the error code from previous operations. Previously if it returned an error, the finalizer wouldn't be unset and sqlite3_backup_finish() would be run again on an already-finished backup. This results in a double-free and often segfaults. The error handling is described in more detail in the "Error handling" section of https://www.sqlite.org/backup.html. | ||||
* | Move sqlite3 amalgation files a directory up. | David Bariod | 2016-04-02 | 1 | -0/+4 |
| | | | | | | 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 | ||||
* | Rename sqlite3.{c,h} to sqlite3-binding.{c,h} | Stéphane Graber | 2015-03-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | This fixes the problem where when building with gccgo, sqlite3.c is overwritten, leading to a build failure. An alternative would have been to move sqlite3*.{c,h} to a subdirectory, but that seems to confuse the linker a fair bit and would just swap one implementation-dependent issue for another. Closes #20 Signed-off-by: Stéphane Graber <stgraber@ubuntu.com> | ||||
* | Backup.Step may handle SQLITE_BUSY / SQLITE_LOCKED specifically. Close #133 | mattn | 2014-11-14 | 1 | -1/+1 |
| | |||||
* | set/reset finalizer to free SQLite3 handles | mattn | 2014-11-14 | 1 | -7/+16 |
| | |||||
* | Add one blank line for godoc | mattn | 2014-08-18 | 1 | -0/+1 |
| | |||||
* | Add license header | mattn | 2014-08-18 | 1 | -0/+4 |
| | |||||
* | Use code | mattn | 2014-08-18 | 1 | -1/+1 |
| | |||||
* | Changed interface for backup step | Shuhao Wu | 2014-07-11 | 1 | -13/+10 |
| | |||||
* | Added an IsDone method for backup | Shuhao Wu | 2014-07-10 | 1 | -0/+9 |
| | |||||
* | Don't return error when succeeded | mattn | 2014-05-27 | 1 | -2/+10 |
| | |||||
* | Add backup. Close #104 | mattn | 2014-01-30 | 1 | -0/+42 |