Hi Laki,
public void install() { CreateTable create = new CreateTable(getDatasource());create.table("ADDRESS").columns(Address.class).primaryKey ("id").column("addr1", String.class); executeUpdate(create); }
just a minor note about this still, if you want to centralize everything in your bean, you can use constraints and/or meta data merging.
More info here: http://rifers.org/wiki/display/RIFE/Constraints http://rifers.org/wiki/display/RIFE/Meta+data+merging Best regards, Geert -- Geert Bevin Uwyn bvba GTalk: [EMAIL PROTECTED] "Use what you need" Avenue de Scailmont 34 Skype: gbevin http://www.uwyn.com 7170 Manage, Belgium AIM: geertbevin gbevin at uwyn dot com Tel: +32 64 84 80 03 Mobile: +32 477 302 599 PGP Fingerprint : 4E21 6399 CD9E A384 6619 719A C8F4 D40D 309F D6A9 Public PGP key : available at servers pgp.mit.edu, wwwkeys.pgp.net _______________________________________________ Rife-users mailing list [email protected] http://lists.uwyn.com/mailman/listinfo/rife-users
