|
Hi tim
You can't do it this way - host variables are for values, not
expressions - so you would have to specify the column name in the
statement, not as part of a string - host variables are not for
substitution into the statement.
Here's how it would look with a host variable:
testvalue = 100
exec sql SELEC count(*)
into :cnt
FROM claims
where number = :testvalue
This is a better performer than this option - put the entire statement
into a character variable and prepare a statement from that variable -
then execute it. I don't want to make an example of that here, too easy
to mislead you.
HTH
Vern
On 7/20/2018 11:17 AM, tim wrote:
i have the following:
exec sql SELECT count(*)
into :cnt
FROM claims;
i would like to do the following (variable where build from field)
wherestr = 'number = 100'
exec sql SELECT count(*)
into :cnt
FROM claims
where :wherestr
can this be done somehow?
--
This is the RPG programming on the IBM i (AS/400 and iSeries) (RPG400-L)
mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: http://amzn.to/2dEadiD
As an Amazon Associate we earn from qualifying purchases.
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.