Home | Previous Page | Next Page   MQ DataBlade Module > MQ DataBlade Functions > MQSendClob() > 3 3 3

Examples

3

Example 1: 3

3
begin;
3EXECUTE FUNCTION MQSendClob(filetoclob("/work/mydata", "client"));
3commit;
3

This example sends a CLOB to the WMQ with the following parameters: 3

3 3

Example 2: 3

3
begin;
3EXECUTE FUNCTION MQSendClob('MYSERVICE', filetoclob("/work/mydata", "client"));
3commit;
3

This example sends a CLOB to the WMQ with the following parameters: 3

3 3

Example 3: 3

3
begin;
3EXECUTE FUNCTION MQSendClob('MYSERVICE', 'MYPOLICY', 
3filetoclob("/work/mydata", "client"));
3commit;
3

This example sends a CLOB to the WMQ with the following parameters: 3

3 3

Example 4: 3

3
begin;
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 Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]