× 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.



Note that it's a bad idea to use a variable name that starts with SQL....

IBM has publicly reserved varibale names that start with SQL for themselves.

Charles

On Tue, Jun 15, 2010 at 4:41 PM, Christen, Duane
<Duane.Christen@xxxxxxxxxx> wrote:
TA;

After I hit send I realized that in this case you don't need the pointer. You could define the DS like:
D sqlData DS
D  k00001                       21A
d   c@                    1      5  0
d   typi                  6      6  0
d   fschi                 7      7  0
d   cyci                  8      8  0
d   arrRT                        3  0 dim(7)



I almost always define a sqlData structure, because it is usually eaiser to get the pre-compiler to accept it. You can then do anything you like with it, including using a pointer to allow you to put the data anywhere you want/need, Eg.

D pending         DS                  Qualified
D                                     Static
D  static
D   count                       10I 0 Overlay(static)
D                                     Inz(0)
D  data                               LikeDs(sqlData)
D                                     Dim(100)

D sqlData         DS                  Qualified
D                                     Dim(100)
D                                     Based(sqlDataBase)
D  id                           20I 0
D  djde                        100A   Varying
D  idx                         100A   Varying
D  pdf                         100A   Varying

sqlDataBase = %Addr(pending.Data);


Duane Christen

--


               Duane Christen
Senior Software Engineer
(319) 790-7162
Duane.Christen@xxxxxxxxxx

Visit PAETEC.COM


-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Timothy Adair
Sent: Tuesday, June 15, 2010 9:43 AM
To: rpg400-l@xxxxxxxxxxxx
Subject: Re: Dynamic SQL fetch into an array

BINGO!

That was exactly what I needed!

It gave me the concept that I could adapt to the live situation.

Awesome, Duane!  You da man!

TA


(Now I feel more like the gopher.  "I'm alright" - go Kenny!)






"Christen, Duane" <Duane.Christen@xxxxxxxxxx> wrote in message news:mailman.32394.1276292127.2580.rpg400-l@xxxxxxxxxxxxxxx
TA;

Why not do this:

D sqlData DS
D  k00001 21A

D record DS Based(recordBase)
D... (your original definition here)

recordBase = %Addr(sqlData);

sqlstm = 'select SubStr(K0001, 1 , 21) +
         from qs36f/"DS.SCH"';

...

exec sql
   fetch C1 into :sqlData;

...

This will put the first 21 bytes of data into sqlData, which is "overlaid"
with by the record DS.

Duane Christen

--


 Duane Christen
Senior Software Engineer
(319) 790-7162
Duane.Christen@xxxxxxxxxx

Visit PAETEC.COM


-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx]
On Behalf Of Timothy Adair
Sent: Friday, June 11, 2010 4:10 PM
To: rpg400-l@xxxxxxxxxxxx
Subject: Re: Dynamic SQL fetch into an array

Thanks for the reply Michael.

This causes the SQL pre-compile to fail with the error:

MSG ID  SEV  RECORD  TEXT
SQL0312  30     787  Position 27 Variable SCHRECORD not defined or not
usable.

I suspect it compares the number of fields in the DS versus the number in the fetch and barfs all over itself.  Perhaps it thinks that the overlay is an additional field.

TA





<Michael_Schutte@xxxxxxxxxxxx> wrote in message news:mailman.32385.1276289034.2580.rpg400-l@xxxxxxxxxxxxxxx

change

 d   arrRT                        3  0 dim(7)

To

 d   strRT                       21
 d   arrRT                        3  0 OverLay(strRT) dim(7)


I haven't tested, but it's worth a try.



--

Michael Schutte
Admin Professional



Announcing Bob Evans Bob-B-Q(r) Road Trip! For a limited time, America's best Bob-B-Q(r) tastes are all at Bob Evans! For more information, visit www.bobevans.com/menu/seasonal.aspx





            "Timothy Adair"
            <tadair@prairiefa
            rms.com>                                                   To
            Sent by:                  rpg400-l@xxxxxxxxxxxx
            rpg400-l-bounces@                                          cc
            midrange.com
                                                                  Subject
                                      Dynamic SQL fetch into an array
            06/11/2010 04:07
            PM


            Please respond to
             RPG programming
             on the IBM i /
                System i
            <rpg400-l@midrang
                 e.com>






After beating my head against this issue, I've searched the archives and the Internet with no luck.  I am attempting to fetch a record in embedded SQL and this record includes a 7-element array.  I'm fetching from a program-described file (QS36F).

I've oversimplified the code below - I just need to get the basic concept.


   d SchRecord       ds
   d   c@                    1      5  0
   d   typi                  6      6  0
   d   fschi                 7      7  0
   d   cyci                  8      8  0
   d   arrRT                        3  0 dim(7)

     sqlstmt = 'select                     +
              substr(K00001,1,5) as c@,    +
              substr(K00001,6,1) as typi,  +
              substr(K00001,7,1) as fschi, +
              substr(K00001,8,1) as cyci,  +
              substr(F00001,1,21) as arrRT +
              from qs36f/"DS.SCH"

 exec sql
     prepare P1 from :sqlstmt;

 exec sql
     declare C1 cursor for P1;

 exec sql
     open C1;


     dou sqlstt <> '00000';

 exec sql
     fetch C1 into :SchRecord;

         if sqlstt <> '00000';
             leave;
         endif;

Etc.



The other fields read in properly but "arrRT" reads in as a single 3-digit field instead of an array of seven 3-digit elements.  I defined it as an array in the DS - why does SQL ignore that?

I have to do this as dynamic because of the "where" and "order by" clauses that are needed.

Any thoughts are appreciated.  I'm starting to feel like Danny Noonan in Caddyshack ("right in the lumber yard").

TA

--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at http://archive.midrange.com/rpg400-l.

--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/rpg400-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

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.