I should clarify that I mean that my code allows a program to map
objects to tables programmatically, not just through annotations. For
example:
Persist p;
... work work work ...
p.insert( "a_table_name", myObject );
p.insert( "another_table_name", myOtherObject );
... etc etc ...
Sorry if I confused.
Clayton