flybywire
flybywire

Reputation: 273572

Java library for database backed collections

I am looking for an efficient sql backed collections library, for the Java programming language.

I need to do database manipulations that fit very well the Collections API, is there something that can be a good bridge for that, or must I roll my own thing.

Upvotes: 0

Views: 367

Answers (1)

Gareth Davis
Gareth Davis

Reputation: 28059

err.. isn't what you are describing hibernate or any JPA implementation?

It's pretty efficient and models all results and associations using implementations of the java collections API.

Upvotes: 6

Related Questions