tomcat
tomcat copied to clipboard
Added support for JDBC 4.3 beginRequest and endRequest methods.
JDBC 4.3 added the methods beginRequest and endRequest to java.sql.Connection. These methods hint the driver of the beginning and completion of a request (independent unit of work). Connection pooling manager should call these methods on the underlying connection prior to returning a connection to the caller, and when the applications returns the connection back to the connection pool respectively.
This pull request adds support for beginRequest and endRequest methods to the Tomcat JDBC Connection Pool.