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

Regarding data movement in CICS - DB2 program


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

New User


Joined: 20 May 2010
Posts: 75
Location: India

PostPosted: Tue Jan 25, 2011 12:13 pm
Reply with quote

Hi All

I have a input variable XXXX-A PIC S9(9)V9(2).
I want to use this variable in my SQL query so in order to use it an host variable i declared a working storage variable
WS-XXXXX-A PIC S9(9)v9(2) COMP-3

then

MOVE XXXX-A TO WS-XXXXX-A

exec sql
select from
where WS-XXXXX-A = COULUM
en-exec

Is there any mistake in am doing this
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Tue Jan 25, 2011 1:03 pm
Reply with quote

depends on the data type of the column.
Back to top
View user's profile Send private message
akodakka

New User


Joined: 20 May 2010
Posts: 75
Location: India

PostPosted: Tue Jan 25, 2011 1:08 pm
Reply with quote

Hi

My coulum data type is decimal

and the dclegen am rtreving is PIC S9(8)V9(2) COMP-3
Back to top
View user's profile Send private message
Kjeld

Active User


Joined: 15 Dec 2009
Posts: 365
Location: Denmark

PostPosted: Tue Jan 25, 2011 1:22 pm
Reply with quote

akodakka wrote:
Hi All

I have a input variable XXXX-A PIC S9(9)V9(2).
I want to use this variable in my SQL query so in order to use it an host variable i declared a working storage variable
WS-XXXXX-A PIC S9(9)v9(2) COMP-3

then

MOVE XXXX-A TO WS-XXXXX-A

exec sql
select from
where WS-XXXXX-A = COULUM
en-exec

Is there any mistake in am doing this

You should post source code using BBCode tags, to enhance readability. An do preceede your host variable name with a colon in sql:
Code:

exec sql
select from
where :WS-XXXXX-A = COULUM
en-exec
Back to top
View user's profile Send private message
akodakka

New User


Joined: 20 May 2010
Posts: 75
Location: India

PostPosted: Tue Jan 25, 2011 1:23 pm
Reply with quote

Hi i am using proper colons..
Back to top
View user's profile Send private message
Kjeld

Active User


Joined: 15 Dec 2009
Posts: 365
Location: Denmark

PostPosted: Tue Jan 25, 2011 4:06 pm
Reply with quote

Ok, then go ahead and program your SQL.

It is good practice to include the DCLGEN structure for the accessed tables in your program and use the host language definitions of columns as host variables, instead of defining your own working storage elements.
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 Store the data for fixed length COBOL Programming 1
No new posts Using API Gateway from CICS program CICS 0
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top