I have a small project that uses Sql2java v2.6.5, and I am trying to upgrade to 2.6.7, the latest version. Basically, I fuse this procedure:
1. Replace the Sql2java v2.6.5 library Jars with the ones supplied for v2.6.7
2. Replace the template files with v2.6.7
3. Run ant generate
The code seems to generate OK, but when I run my test program, I get the following error:
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class com.aurigen.sql2javanys.Manager
at com.aurigen.sql2javanys.earnings.EarningsManager.getManager(Unknown Source)
at com.aurigen.sql2javanys.earnings.EarningsManager.deleteByPrimaryKey(Unknown Source)
at com.aurigen.sql2javanys.zHand.EarningsManagerHelper.testDeleteRecs(Unknown Source)
at com.aurigen.sql2javanys.zHand.TestDb.main(Unknown Source)
Java Result: 1
The com.aurigen.sql2javanys.Manager is generated, and looks OK.
Are there other files that I have to replace besides the Sql2java library Jars, and templates?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a small project that uses Sql2java v2.6.5, and I am trying to upgrade to 2.6.7, the latest version. Basically, I fuse this procedure:
1. Replace the Sql2java v2.6.5 library Jars with the ones supplied for v2.6.7
2. Replace the template files with v2.6.7
3. Run ant generate
The code seems to generate OK, but when I run my test program, I get the following error:
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class com.aurigen.sql2javanys.Manager
at com.aurigen.sql2javanys.earnings.EarningsManager.getManager(Unknown Source)
at com.aurigen.sql2javanys.earnings.EarningsManager.deleteByPrimaryKey(Unknown Source)
at com.aurigen.sql2javanys.zHand.EarningsManagerHelper.testDeleteRecs(Unknown Source)
at com.aurigen.sql2javanys.zHand.TestDb.main(Unknown Source)
Java Result: 1
The com.aurigen.sql2javanys.Manager is generated, and looks OK.
Are there other files that I have to replace besides the Sql2java library Jars, and templates?