up vote 10 down vote favorite
6
share [g+] share [fb]

As a C++ programmer, I always refer to The C++ Programming Language by Bjarne Stroustrup as my C++ "Bible". It's not necessarily the best tutorial. It's not the official specification. It's not necessarily even the best reference. But I believe most C++ programmers would agree that it is regarded as authoritative.

Is there a similarly regarded "Bible" for COBOL?

link|improve this question

3  
Yes, it's called "How To Heal Bloody Fingertips". ;-) – JesperE Oct 23 '08 at 19:36
2  
I thought it was "Programming by the Pound." :-) – Ferruccio Oct 23 '08 at 19:38
4  
It's been renamed to, "Monitor stand". – nportelli Oct 23 '08 at 19:43
I don't know the answer to this but it's a good question. – Onorio Catenacci Oct 23 '08 at 19:43
2  
"Grace Hopper's Little Mistake or Please God Help me, I'm Writing COBOL!!" – Mark Lubin Oct 23 '08 at 19:59
feedback

10 Answers

up vote 12 down vote accepted

I just asked my long-time COBOL-guru colleague, and he says his 'bible' was (and is) always the official IBM Programming guide.

I was poking around on google and found this: http://infogoal.com/cbd/cbdref.htm, which seems to have several links to COBOL resources, including IBM docs.

link|improve this answer
1  
Good Answer! IBM shows many links here also www-01.ibm.com/software/awdtools/cobol/zos/library and the COBOL Language Reference would be the Stroustrup equivalent, I suppose. In PDF format no less. – Carl Camera Jan 26 '09 at 18:27
Upvoted and 2nd. The IBM language reference is GREAT! – privatehuff May 15 '09 at 18:15
feedback

Wow... Blast from the past...

I remember the one I always went to was a COBOL manual produced by DEC which was widely acknowledged in the programming community I inhabited at the time as the reference work on COBOL. However this was at the start of the last ice age since when DEC has disappeared and the manuals with it.

...or so I thought... (click here)

it even looks like it has been updated

link|improve this answer
Even newer! h71000.www7.hp.com/DOC/cobol.html Yes, after all these years, HP is still maintaining DEC COBOL for VMS... – Michael Ratanapintha Nov 19 '08 at 6:25
@Simon: Nice! +1 – Kb. Mar 8 '09 at 15:02
feedback

No. COBOL was invented before books. Or more accurately, when COBOL was invented the concept of publishing a book about a programming language (for the other 17 people who might want to read it) would have been ludicrous.

But seriously, in my five years as a mainframe COBOL programmer the only COBOL books I ever saw on people's desks (in the mid-1990s) were old college textbooks from the mid-1970s. Not that there are no good COBOL books, just that there is no widely accepted "biblical" reference type book.

Amazon has a few COBOL books that are of recent vintage. I can't vouch for any of them, though.

link|improve this answer
3  
"COBOL was invented before books." Ow. That hurts. Okay, we didn't have books, but he papyrus scrolls were really very convenient. – Charlie Martin May 7 '09 at 16:53
feedback

I was born and raised on Stern and Stern's Structured Cobol Programming, but I don't know of its biblical significance. (it did teach me COBOL, however.)

link|improve this answer
feedback

Two excellent books I use are COBOL: From Micro to Mainframe and Murach's Mainframe COBOL. I also see these on desks of other COBOL developers at my place of work.

link|improve this answer
feedback

I think here in Holland most developers see the COBOL teaching books by Ebbinkhuijsen as the bible. But they're in Dutch.

However, a generic bible book is never enough. There comes a point where you need your compiler reference for specific implementation details and available extensions.

link|improve this answer
Thanks for your answer! I agree that a "bible" won't be enough, I just wanted to make my question very focused. – jwfearn Oct 24 '08 at 17:37
feedback

I'm having a cleanup and was feeling remorseful about throwing out my definitive User and Reference guides from DEC for VMS.

Luckly here they are, lovingly maintained by HP.

http://h71000.www7.hp.com/doc/cobol.html

Well done HP!

link|improve this answer
feedback

For technical reference the official IBM COBOL Language Guides are unbeatable.

They are well written and 90% of the content applies to the COBOL language in general.

For a guide on how to code COBOL well the early "Jackson Structured Programming" books concentrated on how to produce well structured code in an essentially unstructured language nearly all the examples were in COBOL.

They are all probably out of print now but you may find a copy somewhere.

The examples on how to code up file merges are a revalation and apply to any language (I did an implementation in perl once!)

link|improve this answer
feedback

According to this question, Murach's Maniframe COBOL by Mike Murache et al, is a good "bible":

alt text

link|improve this answer
feedback

For me once you learn the rudiments of the language there just isn't enough to know to warrant a bible. There isn't a STL to reference or patterns/practices that have evolved that would justify a book. If you have a syntactical question you just google it.

It's the other stuff where you start to have questions - JCL, CICS, and DB2 are often paired with COBOL but shouldn't be covered in a COBOL text. If you start to have further questions about what's going on behind the scenes it usually depends on your shop's implementation and there you have reference manuals.

Honestly most of my questions in COBOL have boiled down to what PIC clause do I need for a DB2 field. I don't need a bible for that though, I just check the DCLGEN.

On a side note enough with the COBOL bashing. I get it - you don't like COBOL. You think it's archaic and painful. If you don't have something constructive to add just stay out of the conversation. You are ruining the signal to noise ratio and it's not constructive. Tell me this though - where do you think your language is going to be in 30 years? You think it will survive without major revisions? Yeah. Thought so.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.