×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
I somehow found thru the new crappy PTF listing that IBM support has
provided:
SI64400 SI64401
DESCRIPTION OF PROBLEM FIXED FOR APAR SE67004 :
-----------------------------------------------
There is a issue in the DB2 addon. The javascript code "delete
stmt/conn" do not clean up resources as expected.
CORRECTION FOR APAR SE67004 :
-----------------------------
This fix provides two new API "conn.close()" and "stmt.close()"
to explictly clean up resource. Please change your "delete
stmt/conn" code to "stmt.close()" or "conn.close()".
Example:
stmt.execSync('...', function(a) {
...
stmt.close(); //replaces "delete stmt"
conn.disconn();
conn.close(); //replaces "delete conn"
})
Bryan
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.