Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
1.1.2
-
None
Description
From very beginning C/C++ impements JDBC-like interface, and JDBC specs say "All Statement objects created from a given
Connection object will be closed when the close method for the Connection
object is called.". I guess it makes sense to follow JDBC specs as much, as possible, since in general this is well thought thru DB access interface specification. This particular case looks sensible.
The fix does not really close it, but changes isClosed() to report it is in case if Connection has been explicitly closed.