mqseries_conn
(PECL mqseries >= 0.10.0)
mqseries_conn — MQSeries MQCONN
説明
mqseries_conn(
string
resource
resource
resource
): void
string
$qManagerName
,resource
&$hconn
,resource
&$compCode
,resource
&$reason
): void
The mqseries_conn() (MQCONN) をコールすると、アプリケーションプログラムをキューマネージャに接続します。 これによって取得した接続ハンドルを、 アプリケーション側でそれ以降のメッセージキューコールの際に使用します。
パラメータ
-
qManagerName
-
キューマネージャ名。
アプリケーションが接続したいキューマネージャの名前。
-
hConn
-
接続ハンドル。
このハンドルは、キューマネージャへの接続を表します。
-
compCode
-
完了コード。
-
reason
-
compCode の原因を表すコード。
戻り値
値を返しません。
例
例1 mqseries_conn() の例
<?php
mqseries_conn('WMQ1', $conn, $comp_code, $reason);
if ($comp_code !== MQSERIES_MQCC_OK) {
printf("conn CompCode:%d Reason:%d Text:%s<br>\n", $comp_code, $reason, mqseries_strerror($reason));
exit;
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google