On 2018-09-13 19:16, Leyne, Sean wrote:
Our Java application is receiving the noted error, have done a web
search for details on same without luck.

Can someone explain what the error means.

See https://stackoverflow.com/q/39148222/466862

In short, this error occurs if you allocate too many statements, transactions, blobs and maybe some other object types on a single connection without releasing them (closing, etc). This could indicate that your code is not properly closing resources, or maybe a bug in your Jaybird version that causes objects to not be properly closed, or maybe a bug in Firebird that doesn't properly release handles.

This problem could be more pronounced if your connections have a long lifetime, or if you use a connection pool without a max connection lifetime (or with a very high max), because in that case minor resource leaks can accumulate.

Mark


Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to