Difference between oracle.sql.BLOB.DURATION_CALL vs oracle.sql.BLOB.DURATION_SESSION

oracle.sql.BLOB.DURATION_CALL vs oracle.sql.BLOB.DURATION_SESSION

What is the difference between the two?

Used to create a temporary LOB by calling BLOB.createTemporary (join, true, flag).

I have the following script:

All connections are merged and will never be released until shutdown. I want a temporary LOB to exist only to execute readyStatement (namely, to insert. After insertion, I don't need a foot). Which flag to use?

+5
source share

All Articles