IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

To perform a select statement in REXX


IBM Mainframe Forums -> DB2
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
lokeshwar_manoharan

New User


Joined: 22 Sep 2008
Posts: 49
Location: Chennai,Tamilnadu

PostPosted: Wed Apr 08, 2009 2:37 pm
Reply with quote

Hi,


I want to write an embedded SQL statement in REXX.
I googled and I got instances where they prepare a statement and then declaring a cursor using the prepared statement and fetching using the cursor. But my SQL statement fetches a single row and cursor is not needed. How to accomplish this ?


I am using the following REXX commands to connect to DB2 system and connection has been established

ADDRESS TSO "SUBCOM DSNREXX"
IF RC \= 0 THEN
DO
S_RC = RXSUBCOM('ADD','DSNREXX','DSNREXX')
END
ADDRESS DSNREXX
"CONNECT" <subsystem>

Now I wan't to execute the following query

SQL_STATEMENT = "SELECT PDSNAME FROM SYSIBM.SYSPACKAGE
WHERE HEX(CONTOKEN) = "CON" and NAME = "INP""

Where CON and INP will be provided by user.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Apr 08, 2009 3:52 pm
Reply with quote

If the cursor works why not keep it. Your results may change in the future and you are already prepared icon_lol.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DB2

 


Similar Topics
Topic Forum Replies
No new posts Compile Several JCL JOB Through one r... CLIST & REXX 4
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
Search our Forums:

Back to Top