vote up 3 vote down star

Is there a Java package providing funcionality like the .Net System.Data namespace ? Specificaly the DataSet and Adaptor classes ?

flag

5 Answers

vote up 3 vote down check

Use java.util for the collections. java.sql for databases.

link|flag
vote up 0 vote down

ADO.NET is a framework with multiple uses, and DataSet is one of the main abstractions. Tell us more about what you want to achieve, and I'm sure somebody will find a Java framework for that purpose.

If you want a simple way to map Java objects to a data backend (like XML files), take a look at some of the POJO (Plain Old Java Object) frameworks.

link|flag
vote up 0 vote down

Hibernate is a popular framework in the Java world. Pretty simple mapping of objects to tables and lots more.

link|flag
Hibernate is anything but simple. – skaffman Oct 1 '08 at 12:22
I agree with skaffman, Hibernate has a lot of features but whether or not its complexity is justified is a subject of much debate. – MetroidFan2002 Oct 1 '08 at 12:42
vote up 0 vote down

Matt, Hibernate is not what he is looking for. If it was there was NHibernate available on the .NET side.

link|flag
vote up 0 vote down

The equivalent to ADO.NET is JDBC. You can get the flavor of it here:

http://www.heimetli.ch/jdbc/JDBCQuery.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.