free()
Syntax:
void free() throws SQLException
Description:
This method frees the Clob
object and releases the resources that it holds. The object is invalid once the free
method is called.
After free
has been called, any attempt to invoke a method other than free will result in a SQLException
being thrown. If free
is called multiple times, the subsequent calls to free
are treated as a no-op.
Throws:
SQLException - if a database access error occurs
Reference:
For more information, reference JDBC documentation for: Clob.free()