crcarter
unread,Oct 23, 2009, 12:02:03 AM10/23/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Persist
I have worked on a few changes that
1) provide new functions for CREATE(), allowing you to create db
tables from arbitrary Java objects
2) specify table names programmatically, eg instead of create
( POJO.class) followed by readlist( POJO.class ), you can now create
( "table1", POJO.class) and create( "table2", POJO.class) followed by
readlist( "table1", POJO.class )
These changes work in my very limited testing. I will upload a patch
to the files section shortly. Please share your thoughts and
experiences.
Clayton