Use sqlite3_close_v2()

This commit is contained in:
Akinori Hattori 2013-10-24 22:21:37 +09:00
parent 2a2faeaf38
commit 4970c4bff6
1 changed files with 1 additions and 6 deletions

View File

@ -293,12 +293,7 @@ func (d *SQLiteDriver) Open(dsn string) (driver.Conn, error) {
// Close the connection. // Close the connection.
func (c *SQLiteConn) Close() error { func (c *SQLiteConn) Close() error {
s := C.sqlite3_next_stmt(c.db, nil) rv := C.sqlite3_close_v2(c.db)
for s != nil {
C.sqlite3_finalize(s)
s = C.sqlite3_next_stmt(c.db, nil)
}
rv := C.sqlite3_close(c.db)
if rv != C.SQLITE_OK { if rv != C.SQLITE_OK {
return ErrNo(rv) return ErrNo(rv)
} }