Hi All,
Here below is the type of project that I am working on...
1. Only 2 tables are used
2. These two tables are like intermediate staging tables from where the data is later fetched, some operations done and transformed data is moved to a different system.
3. One of the table has a foreign key association with the other table. (One to Many mapping)
4. Caching is not required as it does not make much of sense for the project that I am working on
5. A sequence generator is used for each individual table
6. The contents of one of the tables is bound to go in millions
Considering the above points, is it wise to go with Hibernate?
One of my colleagues is saying that we can complete the tasks with
JDBC itself.
We do not know how much changes may be required in future.
Regards,
Sriraam