Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mqseries_back(3) [php 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)

Check Out this Related Man Page

MQSERIES_BEGIN(3)							 1							 MQSERIES_BEGIN(3)

mqseries_begin - MQseries MQBEGIN

SYNOPSIS
void mqseries_begin (resource $hconn, array $beginOptions, resource &$compCode, resource &$reason) DESCRIPTION
The mqseries_begin(3) (MQBEGIN) call begins a unit of work that is coordinated by the queue manager, and that may involve external resource managers. Using mqseries_begin(3) starts the unit of work. Either mqseries_back(3) or mqseries_cmit(3) ends the unit of work. 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_begin(3) example <?php $mqbo = array(); mqseries_begin( $conn, $mqbo, $comp_code, $reason); if ($comp_code !== MQSERIES_MQCC_OK) { /* reason code 2121 is a warning for more information see MQSeries reference manual.*/ if ($reason !== 2121) { printf("CompCode:%d Reason:%d Text:%s<br> ", $comp_code, $reason, mqseries_strerror($reason)); } } ?> NOTES
Note mqseries_begin(3) will not function when using MQSeries Client to connect to a Queueu Manager. SEE ALSO
mqseries_conn(3), mqseries_connx(3), mqseries_back(3), mqseries_cmit(3). PHP Documentation Group MQSERIES_BEGIN(3)
Man Page

5 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. Shell Programming and Scripting

using MQCONN

Hi, I am trying to connect to a queue manager, but I am not able to use the MQCONN command . If anyone have sample program , please help thanks in davance Satya (2 Replies)
Discussion started by: Satyak
2 Replies

5. 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