How would you do an “in” in ibatis ?

 

e.g.

 

select name from person where person_id in (12,23,34,56);

 

 

 

-----Original Message-----
From: Jeff Butler [mailto:[EMAIL PROTECTED]
Sent: 28 April 2006 14:06
To: [email protected]
Subject: Re: Abator generated Classes: How to get all getters(primary key also) from the generated Class

 

It is a central concept of Abator that there are different classes for the primary key and the remaining fields.  Also...if your table contains BLOB fields, there will be another class that just holds the BLOBs.

 

You could do getClass().getMethods() - this will return all the public methods (including the methods in the superclass).

 

Jeff Butler



 

On 4/28/06, Vicente TarĂ­n Font <[EMAIL PROTECTED]> wrote:

I've used Abator to generate the java Classes which represent the DB table.

 

There is a Class representing the table, and another Class representing the primary key of the table.

I want to get all the column values using the getters, but if I use getClass().getDeclaredMethods() or getClass().getDeclaredFields(), i don't get the primary key.

 

I solve this with :

 

getClass().getSuperclass().getDeclaredFields()

or

getClass().getSuperclass().getDeclaredMethods()

 

 

My question is: Is there another way (config?) to achieve this?

 


 

Reply via email to