|
Hi
Thanks for all the ideas, i had ibatis to the mix in
my application, and there is a feature in ibaits
called
Dynamic Mapped Statements which does all the work of
creating statement dynamically and it worked like a
charm.
if some on is interested let me know i will post the
way i defined in ibatis in this forum
Ashish
--- Larry Ducie <Larry_Ducie@xxxxxxxxxxx> wrote:
Hi there Ashish,rows
<snip>
Hi
I have a sql statment like
select * from mytable where line in ('ABC', 'XYZ')
where this SQL statement is going to extact all
where line is ABC and XYZ,i
but now the problem is i do not know if there are
going to be only one line or 2 or 10, so i thought
would define the sql asand
select * from mytable where line in ?
and then i created a string like ('ABC', 'XYZ')
passed it as input parameter, but it does nowwork,
completely
Any ideas for a work around this solution
</snip>
There isn't really a graceful was to solve this
problem. If you really want
it variable then forget parameter markers
and put your filters indistinct
a file and use that as a filter list:
select * from mytable where line in (select
mylinefilters frommaximum
mylinefiltersfile)
Otherwise you will simply have to guess the
number of parameteryou
markers you may ever need and simply repeat your
last list item until you
have used them all. Pretty easy to code in a for
loop and the database is
smart enough to tell that:
select * from mytable where line in ('ABC', 'XYZ')
is exactly the same as:
select * from mytable where line in ('ABC', 'XYZ',
'XYZ', 'XYZ')
So you could use four parameter markers even if
will probably only usejust
two parameter markers 98% of the time. They're
placeholders after all.http://lists.midrange.com/mailman/listinfo/java400-l
Cheers
Larry Ducie
--
This is the Java Programming on and around the
iSeries / AS400 (JAVA400-L) mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the
archives
at http://archive.midrange.com/java400-l.
A$HI$H
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.