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

how to create dynamic array in cobol


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
jeyaraj

New User


Joined: 14 Nov 2005
Posts: 5

PostPosted: Thu Dec 15, 2005 11:24 am
Reply with quote

hi,
please tell me how to create dyanmic array in COBOl. using OCCURS clause with DEPENDING ON we can create only static arrays. Is there any possibility to create dynamic arrays in COBOL. Thanks in advance.
Back to top
View user's profile Send private message
iknow

Active User


Joined: 22 Aug 2005
Posts: 411
Location: Colarado, US

PostPosted: Thu Dec 15, 2005 12:07 pm
Reply with quote

Hi Jeyaraj,

Not in the sense you, as a BASIC-language programmer, would understand 'dynamic array'.

The only way to do this in COBOL is to use a COBOL compiler which supports calls to the current operating system to do your own memory
allocation/reallocation/deallocation and then use POINTER data types to
access that data.

Yes, you could find some programmer to create the code needed, and structure it to resemble BASIC. But any such code will perforce be limited to a specific compiler on a specific target operating system.

Or, instead of using a 'memory' table/array, you could use a random-access file; see ORGANIZATION SEQUENTIAL ACCESS RANDOM RELATIVE KEY IS relative-key-name in your SELECT statements.


Hope this helps.
Back to top
View user's profile Send private message
raghunathns

Active User


Joined: 08 Dec 2005
Posts: 127
Location: rochester

PostPosted: Thu Dec 15, 2005 2:33 pm
Reply with quote

hi,

The depending on works during run time. so if you know before submitting the job .. you pass number of occurences you need thru parm in jcl.

get parm parameter and move that value to depending on variable.

is that you are looking for or different
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 -> COBOL Programming

 


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