× 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 however that while I've been guilty of using select * in an embedded SQL 
statement myself, it is _NOT_ recommended.

Basically, if you use select *, and the file changes then you need to recompile 
the program.

Related is of course the use of customer_ds as an externally defined DS.

Both of which throw away one of the benefits of SQL; being able to change the 
file layout without requiring programs to be touched.


Charles Wilt
iSeries Systems Administrator / Developer
Mitsubishi Electric Automotive America
ph: 513-573-4343
fax: 513-398-1121
 

> -----Original Message-----
> From: rpg400-l-bounces@xxxxxxxxxxxx
> [mailto:rpg400-l-bounces@xxxxxxxxxxxx]On Behalf Of Helge Bichel
> Sent: Thursday, May 12, 2005 11:35 AM
> To: RPG programming on the AS400 / iSeries
> Subject: SV: SV: Embedded SQL
> 
> 
> The host-vars (:custno, :custadr .....) must be defined.
> 
> d customer_ds       e ds                  extname(customer)
> 
> or
> 
> by an F-statement for file CUSTOMER.
> 
> If you want to retrieve every field from CUSTOMER change the 
> select to:
> 
>    c     SqlBuildSelec begsr                     
>                                               
>    c                   eval      SqlSelect =     
>    c                               'select '     
>    c                              + ' *'         
>    c                              + ' from'      
>    c                              + ' customer'   
>                                               
>    c                   endsr                     
> 
> and the read to:
> 
> 
>    c     SqlRead      begsr
> 
>    c/exec sql
>    c+  fetch SqlCur into into :customer_ds
>    c/end-exec
> 
> 
> 
> Brgds
> Helge Bichel
> Copenhagen
> Denmark
> hbi@xxxxxxx
> 
> 


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.