Expert |
|
Joined: Fri Jul 22, 2005 2:42 pm Posts: 670 Location: Seattle, WA
|
food for thoughts:
- JDBC and SQL is more portable than stored procedures, but if your SP are heavy on logic then they could be easier reused by any technology that deals with DB;
- SP might work faster;
- if you need heavy SQL and database optimization then iBatis framework might be a better fit; iBatis also works very well with weird DB schemas
- if operations are mostly CRUDs and DB schema is decent one then Hibernate might be a good fit;
- if DBAs tightly control DB and want to review all the SQL queries then H is pretty much no go :(
_________________ --------------
Konstantin
SourceLabs - dependable OpenSource systems
|
|