Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mqseries_cmit(3) [php man page]

MQSERIES_CMIT(3)							 1							  MQSERIES_CMIT(3)

mqseries_cmit - MQSeries MQCMIT

SYNOPSIS
void mqseries_cmit (resource $hconn, resource &$compCode, resource &$reason) DESCRIPTION
The mqseries_cmit(3) (MQCMIT) call indicates to the queue manager that the application has reached a syncpoint, and that all of the mes- sage gets and puts that have occurred since the last syncpoint are to be made permanent. Messages put as part of a unit of work are made available to other applications; messages retrieved as part of a unit of work are deleted. PARAMETERS
o $hConn -Connection handle.This handle represents the connection to the queue manager. o $compCode -Completion code. o $reason -Reason code qualifying the compCode. RETURN VALUES
No value is returned. EXAMPLES
Example #1 mqseries_cmit(3) example <?php mqseries_cmit($conn, $comp_code, $reason); if ($comp_code !== MQSERIES_MQCC_OK) { printf("cmit CompCode:%d Reason:%d Text:%s<br> ", $comp_code, $reason, mqseries_strerror($reason)); } ?> NOTES
Note mqseries_back(3) will not function when using MQSeries Client to connect to a Queueu Manager. SEE ALSO
mqseries_begin(3), mqseries_back(3), mqseries_conn(3), mqseries_connx(3). PHP Documentation Group MQSERIES_CMIT(3)

Check Out this Related Man Page

MQSERIES_BACK(3)							 1							  MQSERIES_BACK(3)

mqseries_back - MQSeries MQBACK

SYNOPSIS
void mqseries_back (resource $hconn, resource &$compCode, resource &$reason) DESCRIPTION
The mqseries_back(3) (MQBACK) call indicates to the queue manager that all the message gets and puts that have occurred since the last syncpoint are to be backed out. Messages put as part of a unit of work are deleted; messages retrieved as part of a unit of work are rein- stated on the queue. Using mqseries_back(3) only works in conjunction with mqseries_begin(3) and only function when connecting directly to a Queueu manager. Not via the mqclient interface. PARAMETERS
o $hConn -Connection handle.This handle represents the connection to the queue manager. o $compCode -Completion code. o $reason -Reason code qualifying the compCode. RETURN VALUES
No value is returned. EXAMPLES
Example #1 mqseries_back(3) example <?php mqseries_back($conn, $comp_code, $reason); if ($comp_code !== MQSERIES_MQCC_OK) { printf("CompCode:%d Reason:%d Text:%s<br> ", $comp_code, $reason, mqseries_strerror($reason)); } ?> NOTES
Note mqseries_back(3) will not function when using MQSeries Client to connect to a Queueu Manager. SEE ALSO
mqseries_conn(3), mqseries_connx(3), mqseries_begin(3). PHP Documentation Group MQSERIES_BACK(3)
Man Page

4 More Discussions You Might Find Interesting

1. Programming

Connection Pooling

Hi , Could anyone suggest how do you implement a Connection pool in C? Connection pool to store/reuse connections to any resource manager .. database, MQSeries. How is this done? Regards, VJ (0 Replies)
Discussion started by: vjsony
0 Replies

2. Programming

Shellscript for MQSeries

Iam new to shellscript. 1)How to strart QUERYMANAGER using shellscript. 2)How to put and get messages in MQSeries using shellscripts. 3)iam using local queues . Thanks lot. (0 Replies)
Discussion started by: ram2s2001
0 Replies

3. Shell Programming and Scripting

Is there a way to find the version of my MQSeries?

Is there a way to find the version of my MQSeries? Thanks, Vijay. (0 Replies)
Discussion started by: Vijay06
0 Replies

4. Programming

PERL MQSeries MQCONN issue

Hi, I have an issue with a PERL5 script that calls MQCONN. I get this error on this Perl step when connecting to my Q manager: "Undefined Undefined subroutine &main::MQCONN called at ./quelog.pl " I use this code:$Hconn = MQCONN($QMGR,$CompCode,$Reason); In my .profile: export... (2 Replies)
Discussion started by: mrn6430
2 Replies