> You're right, this is a serious problem. I'll try to look into it. Can > you provide more information about what is causing it?
my flowscript code looks like the following example:
-------
cocoon.load("resource://org/apache/cocoon/components/flow/javascript/Databas
e.js");
function myLogic {
var conn = Database.getConnection(poolname);
// begin db stuff
conn.update(...)
// end db stuff
conn.close();
}
--------
the strange thing is, that this occurs unpredictable ;-(
