diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-08-28 18:58:02 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2017-08-28 18:58:02 +0900 |
commit | d40d4905434d5abfab8d29584adc850797897769 (patch) | |
tree | ddd3cd4b42d4bcb6f24960b9d21c030411dda249 /sqlite3.go | |
parent | fix README.md (diff) | |
download | golite-d40d4905434d5abfab8d29584adc850797897769.tar.gz golite-d40d4905434d5abfab8d29584adc850797897769.tar.xz |
fixes #458
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -811,6 +811,7 @@ func (s *SQLiteStmt) Close() error { return errors.New("sqlite statement with already closed database connection") } rv := C.sqlite3_finalize(s.s) + s.s = nil if rv != C.SQLITE_OK { return s.c.lastError() } |