× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I've got a SQLRPGLE stored procedure that I call from a web application. It reads a single record and returns all the fields in a recordset to the web application. The DS in the RPG program that's used to return the record set is defined like this:

D OUTDS E DS Occurs(1) ExtName(MYFILE)

So far, so good. But now I would also like to be able to return a companion record from another file, and if possible I'd like to do it all from one stored procedure. At first, I thought I might be able to return multiple record sets, which would be
ideal, as it would give me some flexibility that would be useful down the road, but after doing some research and testing it looks like that's not possible. My next idea was to return one recordset that contained all the fields from both files, and
that's where I'm having trouble.

I've tried both:

D MYFILEDS E DS ExtName(MYFILE)
D MYFIL2DS E DS ExtName(MYFIL2)

D OUTDS E DS Occurs(1) Qualified
D MYFDS LikeDS(MYFILEDS)
D MYF2DS LikeDS(MYFIL2DS)

and

D OUTDS E DS Occurs(1) Qualified
D MYFDS LikeRec(MYREC)
D MYF2DS LikeRec(MYREC2)

but the compiler gives me SQL5011 errors with the message "Host structure array OUTDS not defined or not usable".

Is there any way to do this, or should I just be content with making two separate calls?

Thanks very much for your help!

PS: Related question: is it better to use a stored procedure, or just use a straight SQL call from the web application? In the first case, I know I want to use a stored procedure, as I want to do some testing before deciding if I want to return anything,
but once that's done sending the companing record is automatic.

Mike Naughton
Senior Programmer/Analyst
Judd Wire, Inc.
124 Turnpike Road
Turners Falls, MA 01376
413-676-3144
Internal: x 444
mnaughton@xxxxxxxxxxxx
****************************************
NOTICE: This e-mail and any files transmitted with it are confidential and solely for the use of the intended recipient. If you are not the intended recipient or the person responsible for delivering to the intended recipient, be advised that any use is
strictly prohibited. If you have received this e-mail in error, please notify us immediately by replying to it and then delete it from your computer.


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.