MySQL CLOB update.

declare
configVar varchar2(32767) :=
'<applicationList>
CLOB DATA GOES HERE
</applicationList>';

begin
update DB.table t set t.field = configVar where t.id = 1;
commit;
end;