Previous Page | Next Page

WebSphere MQ Call Routines

MQCONN



Connects Base SAS to a WebSphere MQ queue manager.
Syntax
Arguments
Example

Syntax

CALL MQCONN(name, hConn, compCode, reason);

Arguments

For the complete syntax information, see the WebSphere MQ Application Programming Reference at www.ibm.com.


Example

The following example connects the Base SAS session to the queue manager named TEST.

hConn=0;
Name="TEST";
compCode=0;
reason=0;
CALL MQCONN(Name, hConn, compCode, reason);

Previous Page | Next Page | Top of Page