Libraries anvil sql oracle setClob

object setClob(connection conn, string querystring, object parameters...)
Writes parameters data to clobs returned by querystring. Query string should end with "for update" so that Oracle would lock the clob object.
Parameters conn -  Database connection to a Oracle database
querystring -  Select querystring (example. select lob from table for update)
parameters -  Number of parameters should be same than number of fields returned by querystring. Parameter values are written into those clobs returned by the querystring.
Returns false if error occurred, or true if everything went ok.
Throws SQLException -  If SQL error occured
IOException -  If an error occured while writing to a clob