ContactUs

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What is the difference between sorted and ordered collection in hibernate?


A sorted collection is sorting a collection by utilizing the sorting features provided by the Java collections framework. The sorting occurs in the memory of JVM which running Hibernate, after the data being read from database using java comparator.

Order collection is sorting a collection by specifying the order-by clause for sorting this collection when retrieval.

If your collection is not large, it will be more efficient way to sort it.

If your collection is very large, it will be more efficient way to sort it .

Related Posts Plugin for WordPress, Blogger...
Flag Counter