• The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
Menu
  • The Four Hundred
  • Subscribe
  • Media Kit
  • Contributors
  • About Us
  • Contact
  • Database Output from CL

    June 7, 2006 Hey, Ted

    I know that IBM added a lot of new programming features to CL in the past two releases. However, one of the features I’ve been hoping for–the ability to do output operations to database files–doesn’t appear to be among them. Please tell me that I’m wrong and that there really is a way to update a database record within a CL program.

    –David

    You’re right in thinking that IBM has not added CL commands to write, delete, and update database records, David, but that does not mean that there is no way to update a record in a database file.

    Let me back up and say that CL has always had a limited ability to write to the database. Every command that includes an OUTPUT parameter and allows the *OUTFILE option writes to a database file. This uses Display Object Description (DSPOBJD) command:

    DSPOBJD OBJ(THOLT/S*)  OBJTYPE(*PGM) +
               OUTPUT(*OUTFILE) OUTFILE(QTEMP/DSPOBJD)
    

    Even if a command does not allow output to an outfile, you may still be able to route printed data into a database file. The following sequence of commands places the output of the Display Library List (DSPLIBL) command into program-described file LIBL in QTEMP.

    OVRDBF  FILE(QPRTLIBL) TOFILE(QTEMP/LIBL) LVLCHK(*NO)
    CRTPF   FILE(QTEMP/LIBL) RCDLEN(132)
    DSPLIBL OUTPUT(*PRINT)
    

    You can also use Copy File (CPYF) and Copy from Query File (CPYFRMQRYF) commands to add to or replace the contents of a database file. (Did you see the tip called Where’s the Other MBROPT Option? I got some good responses to that one.)

    So CL has always had some ability to update and add to database files, but this does not address your question, which is how to update a single record in a database file.

    I suggest you look at Qshell’s db2 utility, which allows you to run SQL commands. When I first wrote about the db2 utility, IBM did not officially support it. As far as I know, that is still the case. My reasoning for that is that db2 is not listed among the utilities in the V5R4 Qshell reference.

    The db2 utility cannot process a cursor, so there is no way for you to use Receive File (RCVF) to read a record, then use db2 to update same the record, as you can do using SQL in a high-level language like RPG or COBOL. You will have to put enough expressions in the WHERE clause to isolate the record you want to update. If you can’t isolate the record, db2 won’t do the job for you and you’ll have to resort to another language.

    In the following example that I quickly threw together, the program attempts to read a record whose ID field has the value INVOICE. If that record is found, the program adds one to the batch sequence number and updates the record. If the record is not found, the program creates a record with a key value of INVOICE.

    pgm                                                             
                                                                    
      dcl  &Command    *char    256                                 
      dcl  &BatchNbrA  *char      5                                 
      dcl  &Lib        *char     10                                 
                                                                    
      dclf BatchSeq                                                 
      
      /* Don't present a Qshell terminal session. */ 
      addenvvar  envvar(QIBM_QSH_CMD_OUTPUT)     value('NONE')      
      monmsg     cpfa980                                            
                                                   
      /* Position to the INVOICE record in BatchSeq. */ 
      ovrdbf  file(BatchSeq) position(*keyae 1 rec 'INVOICE')       
      rcvf                                                          
      monmsg  cpf4137                                               
                                                      
      /* The db2 command needs to know which library the file is in. */
      rtvobjd   obj(BatchSeq) objtype(*file) rtnlib(&lib)           
                                                                    
      /* Add or update the INVOICE record with the last batch number. */
      if (&ID *eq 'INVOICE') do                                     
         chgvar &BatchNbr   (&BatchNbr + 1)                         
         chgvar &BatchNbrA  &BatchNbr                               
         chgvar &Command    ('update' *bcat &lib *tcat '.BatchSeq +
                                 set BatchNbr=' *cat &BatchNbrA *cat +         
                             ' where ID=''INVOICE''')                          
      enddo                                                                    
      else do                                                                  
         chgvar &BatchNbr   1                                                  
         chgvar &BatchNbrA  &BatchNbr                                          
         chgvar &Command    ('insert into' *bcat &lib *tcat '.BatchSeq +       
                                values(''INVOICE'',' *cat &BatchNbrA *cat ')') 
      enddo                                                                    
                                                                               
      chgvar &Command ('db2 "' *cat &Command *tcat '"')                        
      qsh    cmd(&Command)
    

    The generated db2 commands look something like this:

    QSH CMD('db2 "update MYLIB.BatchSeq set BatchNbr=00003 
    		where ID=''INVOICE''"')
    
    QSH CMD('db2 "insert into MYLIB.BatchSeq 
    		values(''INVOICE'',00001)"')
    

    Before you decide whether or not to use the db2 utility, you need to be aware of a problem. This command always returns a zero status, whether the command executes properly or not. Such behavior does not do wonders for error-checking, and so far I have not found a good solution to it.

    –Ted

    RELATED STORIES

    Where’s the Other MBROPT Option?

    Updating Through an SQL Cursor

    Access the Database from Qshell

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Tags:

    Sponsored by
    Midrange Dynamics North America

    Git up to speed with MDChange!

    Git can be lightning-fast when dealing with just a few hundred items in a repository. But when dealing with tens of thousands of items, transaction wait times can take minutes.

    MDChange offers an elegant solution that enables you to work efficiently any size Git repository while making your Git experience seamless and highly responsive.

    Learn more.

    Share this:

    • Reddit
    • Facebook
    • LinkedIn
    • Twitter
    • Email

    Sponsored Links

    Bytware:  Network security, anti-virus, monitoring, notification/alerts, file recovery, & compliance
    nuBridges:  Leading provider of secure FTP on the iSeries
    COMMON:  Join us at the Fall 2006 conference, September 17-21, in Miami Beach, Florida

    OCEAN User Group to Host Annual Tech Conference on July 11 Recursive Queries on the iSeries and System i

    Leave a Reply Cancel reply

Volume 6, Number 22 -- June 7, 2006
THIS ISSUE SPONSORED BY:

WorksRight Software
Advanced Systems Concepts
DataMirror

Table of Contents

  • Database Output from CL
  • V5R4 Security: Rochester Rests Not on Its Laurels,
  • Admin Alert: Preparing Your i5 Shop for a Pandemic

Content archive

  • The Four Hundred
  • Four Hundred Stuff
  • Four Hundred Guru

Recent Posts

  • Public Preview For Watson Code Assistant for i Available Soon
  • COMMON Youth Movement Continues at POWERUp 2025
  • IBM Preserves Memory Investments Across Power10 And Power11
  • Eradani Uses AI For New EDI And API Service
  • Picking Apart IBM’s $150 Billion In US Manufacturing And R&D
  • FAX/400 And CICS For i Are Dead. What Will IBM Kill Next?
  • Fresche Overhauls X-Analysis With Web UI, AI Smarts
  • Is It Time To Add The Rust Programming Language To IBM i?
  • Is IBM Going To Raise Prices On Power10 Expert Care?
  • IBM i PTF Guide, Volume 27, Number 20

Subscribe

To get news from IT Jungle sent to your inbox every week, subscribe to our newsletter.

Pages

  • About Us
  • Contact
  • Contributors
  • Four Hundred Monitor
  • IBM i PTF Guide
  • Media Kit
  • Subscribe

Search

Copyright © 2025 IT Jungle