aboutsummaryrefslogtreecommitdiff
path: root/_example/mod_vtable/sqlite3_mod_vtable.cc (unfollow)
Commit message (Expand)AuthorFilesLines
2014-01-29Fix testmattn1-2/+3
2014-01-29go covermattn1-0/+1
2014-01-29Add test for error == nilmattn1-0/+6
2014-01-23Add example that query github repositoriesmattn4-0/+1338
2013-12-05Next(): populate Row with []byte instead of string, as per driver doc•••Fix on behalf of bradfitz, see http://golang.org/pkg/database/sql/driver/#Rows mpl1-1/+1
2013-11-30Remove compiler error•••I got an error "function ends without a return statement" on go1.0.2 Eric L. Frederich1-2/+1
2013-11-19Add unit test for enhanced error reporting•••Add a test to check for a useful response for a SQL query that cannot be executed due to a constraint failure Robert Knight1-1/+26
2013-11-19Update test expectations follow change of concrete error typeRobert Knight1-1/+3
2013-11-19Provide more detailed error messages•••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' Robert Knight3-15/+35
2013-10-24sqlite3_column_blob() returns NULL for zero-length BLOBAkinori Hattori1-0/+4
2013-10-24Use sqlite3_close_v2()Akinori Hattori1-6/+1
2013-10-02Include errno.h when build on cygwin. Closes #87mattn1-0/+4
2013-09-28Update README.mkd•••Include documentation sectionPorjo1-3/+10
2013-09-18Add benchmark tests. As used by other database/sql drivers.Tim O'Brien2-0/+423
2013-09-12add new test for WAL journal_modeDavid Hill1-1/+46
2013-09-12Disable Execer/Queryer until database/sql/driver implement QueryRow: #82mattn2-122/+126
2013-09-12renamemattn3-0/+0
2013-09-12Execer/Queryer should use transactionmattn1-0/+14
2013-09-09Fixes testmattn1-5/+11
2013-09-09Fixes Queryermattn1-5/+8
2013-09-09Fixes Execer/Queryermattn2-34/+37
2013-09-09Fixes testmattn1-1/+37
2013-09-09Close rows if not nilmattn1-1/+3
2013-09-09Must not close statementmattn1-2/+2
2013-09-09Implements Queryermattn1-1/+24
2013-09-09Remove debug messagemattn1-1/+0
2013-09-09Implements Execermattn3-14/+59
2013-09-03Remove old informationmattn1-25/+1
2013-09-03Fixes testmattn1-7/+2
2013-09-03Add testsmattn2-0/+164
2013-09-02Remove -vmattn1-1/+0
2013-08-30CFLAGSmattn1-0/+1
2013-08-30Start work on introducing machine-readable error codes.•••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". Jochen Voss3-11/+90