|
"Nelson C. Smith" wrote: > > The first call to this procedure works fine and returns the requested record > in the host variable. The cursor is then closed and the procedure ends, but > the *srvpgm that the procedure is in stays active in it's own activation > group. On the second call to this procedure, passing a different set of > keys, The new cursor is declared, opened, and the new fetch is done to the > host variable. This time the host variable is empty. > Yup. Put the job in debug and try again. I am willing to bet that the message that the ODP was re-used will appear. Since you prepared that statement for the cursor, you are using dynamic SQL, not static. Remove the prepare and that may help, just use a host variable instead of the substitution in a prepare. Of course, this assumes that you can do that. For example select a from b where c = ? ==> prepare and open cursor --- or --- select a from b where c = :host-var ==> no prepare, put in declare cu cursor for... statement change the host variable, open the cursor and make sure it is closed after the call. -- =========================================================== R. Bruce Hoffman, Jr. -- IBM Certified AS/400 Professional System Administrator -- IBM Certified AS/400 Professional Network Administrator "The sum of all human knowledge is a fixed constant. It's the population that keeps growing!" +--- | This is the RPG/400 Mailing List! | To submit a new message, send your mail to RPG400-L@midrange.com. | To subscribe to this list send email to RPG400-L-SUB@midrange.com. | To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---END
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.