The Artima Developer Community
Sponsored Link

Java Buzz Forum
Hibernate overlooks fundamental JDBC performance optimization

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Max Zone

Posts: 9170
Nickname: dzone
Registered: Jun, 2006

dzone.com is a link-sharing community where member participation determines what gets published
Hibernate overlooks fundamental JDBC performance optimization Posted: Apr 13, 2007 10:46 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by Max Zone.
Original Post: Hibernate overlooks fundamental JDBC performance optimization
Feed Title: dzone.com: java
Feed URL: http://feeds.dzone.com/dzone/java
Feed Description: dzone.com: fresh java links for developers
Latest Java Buzz Posts
Latest Java Buzz Posts by Max Zone
Latest Posts From dzone.com: java

Advertisement
I found myself profiling yet again due to a Hibernate related performance issue. One of this things that stuck me as odd was that at the lowest level Hibernate is still using the column name version of the ResultSet 'get' accessors. I thought it was a pretty well known fact that using the column numbers to read data from resultsets was more efficient that the column name counterpart. ie rs.getString(int) instead of rs.getString(colname).

Read: Hibernate overlooks fundamental JDBC performance optimization

Topic: Apache's Open Letter to Sun Microsystems Previous Topic   Next Topic Topic: Java Drill

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use