Commit d0addfa1 authored by gwenn's avatar gwenn

Try to make travis build pass.

parent 64cf802e
......@@ -101,11 +101,11 @@ const (
ErrFormat = Errno(C.SQLITE_FORMAT) /* Auxiliary database format error */
ErrRange = Errno(C.SQLITE_RANGE) /* 2nd parameter to sqlite3_bind out of range */
ErrNotDB = Errno(C.SQLITE_NOTADB) /* File opened that is not a database file */
Notice = Errno(C.SQLITE_NOTICE) /* Notifications from sqlite3_log() */
Warning = Errno(C.SQLITE_WARNING) /* Warnings from sqlite3_log() */
Row = Errno(C.SQLITE_ROW) /* sqlite3_step() has another row ready */
Done = Errno(C.SQLITE_DONE) /* sqlite3_step() has finished executing */
ErrSpecific = Errno(-1) /* Wrapper specific error */
//Notice = Errno(C.SQLITE_NOTICE) /* Notifications from sqlite3_log() */
//Warning = Errno(C.SQLITE_WARNING) /* Warnings from sqlite3_log() */
Row = Errno(C.SQLITE_ROW) /* sqlite3_step() has another row ready */
Done = Errno(C.SQLITE_DONE) /* sqlite3_step() has finished executing */
ErrSpecific = Errno(-1) /* Wrapper specific error */
)
func (c *Conn) error(rv C.int, details ...string) error {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment