Author |
Message |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Sat Jun 22, 2002 4:09 am Subject: How to create mixing type message |
Nevermind :)
Thank you very much for your help.
Everything works perfectly.
Good luck.
Piker |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Fri Jun 21, 2002 4:16 am Subject: How to create mixing type message |
Why could RCD produce output message with empty MRM body?
I created message set and message with identifier m_test (message type). :( |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Wed Jun 19, 2002 11:23 pm Subject: How to create mixing type message |
I've decided to make the task a bit simpler.
char buffer[10000];
#pragma pack(1)
struct {int i,
char b[3],
float j,
double k;} testStr;
#pragma pack()
testStr.i = 4;
... |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Wed Jun 19, 2002 10:48 am Subject: How to create mixing type message |
Thank you for your answer :)
I had done everything (except memcpy)before. But unfortunately I didn't see double value(5.4) in the blob (with memcpy too).
How can I create the whole appropriate for M ... |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Wed Jun 19, 2002 10:24 am Subject: How to create mixing type message |
do you mean I should copy into char buffer?
Good luck.
Piker |
Topic: How to create mixing type message |
Piker
Replies: 9 Views: 6021
|
Forum: IBM MQ API Support Posted: Wed Jun 19, 2002 9:51 am Subject: How to create mixing type message |
hi all :)
just a small question :)
I have csv-file and send the text row by row to a queue using MQPUT.
Now I want to create something like structure from each row
for example:
row - test;5 ... |
Topic: insert values into table |
Piker
Replies: 5 Views: 4644
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 17, 2002 9:50 pm Subject: insert values into table |
Thank you for your help.
I've found the solution.
I should use
insert into <table>
(el1, el2)
values
(Body.Result[i].(XML.Element)EL2,
Body.Result[i].(XML.Element)EL1)
Thank you again ... |
Topic: insert values into table |
Piker
Replies: 5 Views: 4644
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 17, 2002 9:25 pm Subject: insert values into table |
Nope. There is no mistake. I have two tables
testin (el1 number, el2 character)
tableout (el1 character, el2 number, el3 double)
Each element in these tables may be null.
Thanks :)
The same ... |
Topic: insert values into table |
Piker
Replies: 5 Views: 4644
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 17, 2002 8:47 pm Subject: insert values into table |
(0x1000010)XML = (
(0x1000000)Result = (
(0x1000000)EL1 = (
(0x2000000) = 2
)
(0x1000000)EL2 = (
(0x2000000) = '1234f '
)
)
(0x1 ... |
Topic: insert values into table |
Piker
Replies: 5 Views: 4644
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 17, 2002 8:39 am Subject: insert values into table |
Hi
I'm new in WMQI and got a problem.
First of all, in compute node I made
create field OutputRoot.XML.Result;
set OutputRoot.XML.Result[] = (select * from Database.Testbase.tablein);
... |