aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 731cf73..6de2123 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -228,10 +228,6 @@ type SQLiteRows struct {
}
func (rc *SQLiteRows) Close() error {
- rv := C.sqlite3_finalize(rc.s.s)
- if rv != C.SQLITE_OK {
- return errors.New(C.GoString(C.sqlite3_errmsg(rc.s.c.db)))
- }
return nil
}