Re: Question on dynamic prepend and using multiple properties

2005-05-17 Thread Brandon Goodin
Don't forget the new functionality available in 2.1.0 count > #countA# count < #countB# Brandon On 5/17/05, Ron Grabowski <[EMAIL PROTECTED]> wrote: > Have you tried this: > > > ( > > count > #countA# > > > count < #countB# > > ) > > > --- Narasimha Prasad <[EMAIL PROTECT

Re: Question on dynamic prepend and using multiple properties

2005-05-17 Thread Ron Grabowski
Have you tried this: ( count > #countA# count < #countB# ) --- Narasimha Prasad <[EMAIL PROTECTED]> wrote: > Here is a problem that I am facing. > > > > My parameter class has two counts, say countA and countB and I need > to use > these in a ‘HAVING’ clause in the

Question on dynamic prepend and using multiple properties

2005-05-17 Thread Narasimha Prasad
Here is a problem that I am facing.   My parameter class has two counts, say countA and countB and I need to use these in a ‘HAVING’ clause in the sql query.  Both the values could be empty. For eg. if they both have values, the query would look like:   Select …. --- from… where…. H