Re: Nested Beans not populating using SQL alias.

2005-07-18 Thread Tom B.
Your solution would work, provided that the getters and setters are in the base class "Foo". The methods I'm selecting into are nested, not simple properties, in the class "Bar". Here's a better example: SELECT baz1 AS "bar.baz1", baz2 AS "bar.baz2", column1 AS "test" FROM foo cl

Re: Nested Beans not populating using SQL alias.

2005-07-18 Thread Zarar Siddiqi
Your column names aren't matching. Try this instead. SELECT baz1 baz2 FROM foo Also, make sure the Bar class has a get/set for baz1 and baz2. Zarar - Original Message - From: "Tom B." <[EMAIL PROTECTED]> To: Sent: Monday, July 18, 2005 10:02 AM Subject: Nested Beans no