Example 1: 3
3begin; 3EXECUTE FUNCTION MQSendClob(filetoclob("/work/mydata", "client")); 3commit;3
This example sends a CLOB to the WMQ with the following parameters: 3
3Example 2: 3
3begin; 3EXECUTE FUNCTION MQSendClob('MYSERVICE', filetoclob("/work/mydata", "client")); 3commit;3
This example sends a CLOB to the WMQ with the following parameters: 3
3Example 3: 3
3begin; 3EXECUTE FUNCTION MQSendClob('MYSERVICE', 'MYPOLICY', 3filetoclob("/work/mydata", "client")); 3commit;3
This example sends a CLOB to the WMQ with the following parameters: 3
3Example 4: 3
3begin; 3EXECUTE FUNCTION MQSendClob('MYSERVICE', 'MYPOLICY', 3filetoclob("/work/mydata", "client"), 'TEST3'); 3commit;3
This example sends a CLOB to the WMQ with the following parameters: 3
3