I am new to rexx db2 ,can anyone help me by expalinin how
to code the db2 queries using rexx,and also plz send some
link and examples using db2 queries.
Answer Posted / marlo
I've done this before and here's part of my code!!! You do
the research!!!
ADDRESS TSO "SUBCOM DSNREXX"
IF RC <> 0 THEN
DO
X_RC = RXSUBCOM('ADD','DSNREXX','DSNREXX')
IF X_RC <> 0 THEN
DO
SAY 'PROBLEM LOADING '||SUBSYS' ENVIRONMENT'
EXIT 0
END
END
ADDRESS DSNREXX "CONNECT" SUBSYS
...
...
ADDRESS DSNREXX "EXECSQL DECLARE C1 CURSOR FOR S1"
ADDRESS DSNREXX "EXECSQL PREPARE S1 FROM :SQLSTMT"
ADDRESS DSNREXX "EXECSQL OPEN C1"
ADDRESS DSNREXX "EXECSQL FETCH C1 INTO :COUNT "
ADDRESS DSNREXX "EXECSQL CLOSE C1"
-marloL.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Is it possible to combine uni-rexx with a compiled language in any application? What applications interfaces are there?
What are the various error conditions seen in rexx?
How to code the db2 queries using rexx?
what would I use uni-rexx for?
What is the difference between ooRexx and IBM's Object REXX for Windows?
can oorexx run ibm object rexx programs?
What are various loop types supported by rexx?
have you already used rexx - even for limited purposes? Do you need to maintain a high level of productivity during your transition to unix?
how to access data in control blocks such as jobname?
How to run my rexx exec?
how to access data held on the jes spool?
can I port my existing applications from the mainframe or os/2? Will there be extensive changes required to do this?
what if I need to have the same application running on multiple platforms, such as unix and the mainframe? Does that mean I have to maintain two separate sources?
Suppose if there are a set of statements and each has a word “value” in it, if I want to display all these statements so that the word “value” is aligned, then how do I code this in rexx?
is oorexx compatible with rexx?