We are creating a small application that will be deployed to very limited machines. They have only 256mb of RAM.
I would like to use JPA as it simplifies the code and removes the need for JDBC ResultSet code. However, will the overhead of JPA on such small machines be a factor? I am thinking of using Toplink at the moment, which comes in a 2.5mb JAR file.
We only have a limited number of tables, so the JDBC code won't be too much trouble. But JPA makes the code so nice.
Cheers.