Our project is a web application. Currently, we have database connectivity method using toplink.
Wanted to explore more options as an alternate solution for toplink.
The volume of data which we are retrieving is not more than 1000 records at a time.
Also, complexity of queries to the database is medium.
we have 8-10 tables in the schema and joins are not complex.
please suggest if we should go for entity beans or jdbc
-
Database connectivity method (1 messages)
- Posted by: shubhra gupta
- Posted on: March 16 2005 13:21 EST
Threaded Messages (1)
- Database connectivity method by Matan Amir on March 17 2005 07:32 EST
-
Database connectivity method[ Go to top ]
- Posted by: Matan Amir
- Posted on: March 17 2005 07:32 EST
- in response to shubhra gupta
Other than Entity Beans (i'd wait for v3.0 for this) or straight JDBC, there are other options.
Why not look at JDO or Hibernate? Both are good ORM solutions (similar to TopLink) that provide persistence capabilities.
Hope that helps,
Matan