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



Nope, just a typo.

Roger Harman
COMMON Certified Application Developer - ILE RPG on IBM i on Power

 
 





From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxx> on behalf of Englander, Douglas <Douglas_Englander@xxxxxxxxxxxxx>
Sent: Thursday, June 1, 2017 6:17 AM
To: midrange-l@xxxxxxxxxxxx
Subject: Re: Soft coding SQL based on parameter file
 

Roger,

Assuming you used copy and paste for the code snippet, it looks like the definition for the RcdCount field has the letter "o" as the decimal places, instead of the number zero.

Doug


----------------------------------------------------------------------

message: 1
date: Wed, 31 May 2017 23:05:57 +0000
from: Roger Harman <roger.harman@xxxxxxxxxxx>
subject: Soft coding SQL based on parameter file

I have a need to soft-code SQL (embedded RPGLE) based on a parameter file for some auditing we need to do.  Record count and a couple of hash totals.

Table name will be passed as a parm to the program and it then looks up the columns it needs to query.

Configuration File Layout:     // Sample config
  Table_Name   10a                // SLP15
  Column1_Name   10a         // BBAL15
  Column2_Name   10a         // PTMT15
  Column1_Text  32a             // Customer Balance
  Column1_Text  32a             // Payment Amount

myDataStruct:         // Sample result data
  Name1   10a           //  BBAL15
  Name2   10a           //  PTMT15
  Text1      32a           //  "Customer Balance"
  Text2      32a           // "Payment Amount"
  Value1   31p2         //  10000.00
  Value2   31p2         // 2000.00
  RcdCount   10i o    // 4000

What I need is to be able to generate the equivalent of this based on and it is giving me fits:

select 'BBAL15', 'PTMT15', 'Customer Balance', 'Amount Paid', sum(BBAL15), sum(PTMT15), count(*) into myDataStruct  from SLP15

I've tried stringing it together with :HostVariable, using parameter markers, and nothing seems to work.   A lot of SQL0312 errors.

Does anyone have a simple example of this or pointers to get me going?  It's got to be the magic mix of literals and column names that is the problem.

Thanks.
    
Roger Harman
COMMON Certified Application Developer - ILE RPG on IBM i on Power
 
 ?
 ?
   

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.