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

Embeded sql statements in Cobol-db2 programs


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

New User


Joined: 21 Jul 2005
Posts: 23

PostPosted: Mon Aug 01, 2005 12:18 pm
Reply with quote

Hi Guys,

I have a query in a cobol-db2 program as follows.

EXEC SQL

SELECT * FROM EMPTAB WHERE EMP_NME = 'GOPS';

END EXEC.

Can I use such embeded sql statements in Cobol-db2 programs.

If not why?

will it gives me any error if I use such qurery, pls let me know the
SQL CODE.


Cheers,
Gops
Back to top
View user's profile Send private message
Mamata

New User


Joined: 01 Aug 2005
Posts: 4
Location: hyderabad

PostPosted: Mon Aug 01, 2005 3:55 pm
Reply with quote

Hi,

We can not use embedded SQLs like
'SELECT * FROM.....' in a Cobol program.

this will not give any Error but if the Number fields in the table get modified (new field added or a field is deleted) it'll cause problem in the DCLGEN host variables.

Regards,
Mamata.
Back to top
View user's profile Send private message
t1nt1n

New User


Joined: 08 Jul 2005
Posts: 31

PostPosted: Thu Aug 04, 2005 7:39 pm
Reply with quote

Hello

Generally when you want to use queries that selects more than one rows, you need to use cursors.

you need to do in this order DECLARE, OPEN, FETCH, CLOSE.
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Calling DFSORT from Cobol, using OUTF... DFSORT/ICETOOL 5
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top