Subject Re: [Firebird-Java] Re: How to properly close FB embedded database?
Author Roman Rokytskyy
> How do I close the "attachment"? Do you mean closing the last
> java.sql.Connection or calling FBManager.stop()? We tried both to no vail.

Connection.close() (unless you use connection pooling) will close the
database attachment. The FBManager.stop() has no effect, since the
FBManager methods attach and detach from database in the same method.

Roman