InterviewSolution
| 1. |
Difference Between Mqconn And Mqconnx? |
|
Answer» MQCONN (MQSTATE, qManagerName) : Connects to a queue MANAGER, which is identified by qManagerName, a STRING of up to 48 characters. MQSeries sets the connection handle for use in subsequent calls. MQCONNX (MQSTATE, qManagerName, MQCNO): Connects to a queue manager with options that CONTROL the way that the CALL works. The queue manager is identified by qManagerName, a string of up to 48 characters. MQSeries sets the connection handle (MQSTATE.hconn) for use in subsequent calls. MQCONN (MQSTATE, qManagerName) : Connects to a queue manager, which is identified by qManagerName, a string of up to 48 characters. MQSeries sets the connection handle for use in subsequent calls. MQCONNX (MQSTATE, qManagerName, MQCNO): Connects to a queue manager with options that control the way that the call works. The queue manager is identified by qManagerName, a string of up to 48 characters. MQSeries sets the connection handle (MQSTATE.hconn) for use in subsequent calls. |
|