I have the following embedded in a program (it's RPG, but I assume the
answer will be applicable to any language, hence the midrange list instead
of the RPG list):
Exec SQL Select Coalesce(Min(INVDT),'0001-01-01'),
Coalesce(Max(INVDT),'0001-01-01'),
Coalesce(Count(*),0)
Into :BgnDat,
:EndDat,
:TotRecs
From SLSALL;
My question is, is there a way to not hardcode the file name SLSALL? It
doesn't accept a host variable there, like :FileName. I tried setting it up
with dynamic SQL, parameter markers, and PREPARE, like this:
This mailing list archive is Copyright 1997-2025 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.