Hello Desanth
I had the similar requirements. I am doing that with xsjs
JSDoc: Class: PreparedStatement
There are methods to set large object datatypes
e.g
setBlob(columnIndex, value)
pstmt = conn.prepareStatement( "update <table_name> set <column_name> = ?")
pstmt.setBlob(1,<value>);