tomcat icon indicating copy to clipboard operation
tomcat copied to clipboard

Added support for JDBC 4.3 beginRequest and endRequest methods.

Open fmeheust opened this issue 1 year ago • 1 comments

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.

fmeheust avatar Nov 06 '23 14:11 fmeheust