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
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