On Sat, 13 May 2000, dave bryson wrote:
<snip>
> I'm about a 1/4 of the way into this now. But, I wanted to ping the
> group and see if there's anything that I may be missing.
>
I would like to suggest whatever it looks like that you give the mapping
facilities to map an object directly into an associated table if it
is a 0..1, or 1..1 cardinality relationship.
For example:
public class CompositeClass
{
int id = 0;
String name = null;
Address addr = null;
...
}
public class Adress
{
String street = null;
String city = null;
String state = null;
String zip = null;
}
What I would like to see is the ability to map the fields of address
into the table where name field of the composite class is. So that the
table that maps CompositeClass has the following fields and the peer
knows that the last four fields map to an address object:
ID_FIELD
NAME_FIELD
STREET_FIELD
CITY_FIELD
STATE_FIELD
ZIP_FIELD
This is something that I had to hand code for the calendar objects, so I
can help in this area, but cant really get to it till after the 22nd.
Jeff Prickett
[EMAIL PROTECTED]
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]