-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: dynamic Filter
PostPosted: Fri Dec 14, 2007 11:31 am 
Newbie

Joined: Wed Oct 17, 2007 10:31 am
Posts: 3
Hi!
First I apologize for my bad English.

I'm searching for a way to create filter-statements dynamically:

My table:

<class name="myPackage.Person" table="Person">
<id name="pid" type="int">
<column name="pid" />
<generator class="assigned" />
</id>
...
<set name="memos" cascade="all" lazy="true">
<key column="mpid"/>
<one-to-many class="myPackage.Memos"/>
<filter name="memoFilter" condition="mpid IN (
select anotherTable.AMTZ from anotherTable where :memoSearch)"/>
</set>
</class>

My first try:
The param "memoSearch" is a SQL-statement, which is build dynamically by the user of my application.
for Example:
memoSearch= "( anotherTable.FIELD_A = 'some' AND anotherTable.FIELD_B = 'thing' OR (anotherTable.FIELD_A='foo' AND ... )

I cannot call a simple "mpid IN :values" because I don't know anything about the structure of the search (ANDs/ORs, paranthesis).

But this fails as the parameter are injected as string parameters, so I get
... from anotherTable where ' ( anotherTable.FIELD_A = 'some' AND...)'

and so it won't be executed.

Any hints?

Thanks in advance,
gizeh


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.