Expert |
 |
Joined: Thu Jan 29, 2004 2:31 am Posts: 362 Location: Switzerland, Bern
|
The main purpose of useing an ORM tool is, that you don't have to deal with things like resultsets. If your application deals with resultsets and (prepared)statements already you're maybe better of looking for a framework which makes the JDBC handling easier. (Have a look at Spring).
If you need the resultset only in some rare cases you can always get the current connection (Session.connection()) and do all the JDBC sutff yourself. If you do update/delete/insert calls to the db be carfull, since hibernate doesn't know anything about your operations and may get out of sinc with the db.
HTH
Ernst
|
|