I've downloaded the latest build, but I am unsure as to where the BasicColumnProcessor class fits in. The mapColumnsToProperties method requires ResultSetMetaData which is hidden inside the BeanListHandler in my own code. Does this mean I'd have to write my own Handler? Are there any examples on this anywhere?

Thanks


David Graham wrote:


Grab a nightly build and use the BasicColumnProcessor class.  This is such
a common problem that we should probably release 1.1 soon.

David

--- Mike Zatko <[EMAIL PROTECTED]> wrote:


Hello,
This should be a very simple question. I am pulling in a table in a query that contains a bunch of Strings and an Integer. It works fine except its not getting the values for the ints. How do I map the database integer column to my bean? I've tried using int, Integer, and String, but none work.



public class MerchantBean {
private String partNumber;
private String description;
private String name;
private String thumbnail;
private String picture;
private String identifier;
private int groupId;


...
}



Heres the snippet of code, nothing spectacular:

runner = new QueryRunner();
handler =
new BeanListHandler(MerchantBean.class);
List merchantRecords =
(List)runner.query(conn, configuration.getMerchantFileQuery(), handler);



Everything works fine except I get 0's for my groupId field. Any ideas? Thanks.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





__________________________________
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







Reply via email to