christian - 2008-07-25

Since there is Netbeans IDE 6.1 out now - and I allways had problems with classpath - I switched from Eclipse to Netbeans. I was exited to find a comlete and ready to use toplink implementation in Netbeans. So I switched from ActiveObjects to Toplink too. Toplink is a really powerful and much more the way I like to do things.

Logically I have done some slightly Changes:
* Removed active attribute from all beans
* Connection is made by default on api startup -> connection information ist in persistant.xml
* Transactions are now easy to use by typing Trx.begin(); //... do something; Trx.commit();
* Datamart logic changed completly - Dtm is really fast now
   (lets say very fast -> by caching dtm results via serialized java objects in database)

You can view the new fimi on cvs:
* http://fimi.cvs.sourceforge.net/fimi/volatile_new/V001/fimi/

For usage instructions see the src/fimi/test/Test.java :
* http://fimi.cvs.sourceforge.net/fimi/volatile_new/V001/fimi/src/fimi/test/Test.java?revision=1.2&view=markup

Chris

PS One open Tas is that I have to reimplement the talib section - problem is that I am not happy with the talib helper logic (ex. assigning variables as strings). May be I build a talib to bean converter and implement value ranges as objects.