vote up 0 vote down star

This article from IBM about a JDBC wrapper seems good and I'm tempted to use it:

http://www.ibm.com/developerworks/java/library/j-jdbcwrap/index.html

but it its dated 2001 - is it still relevant to today's best practices or has this been superseded by something else better?

Your opinions are much appreciated..

flag

4 Answers

vote up 1 vote down check

If you don't mind adding third party libraries - take a look at Spring.

They have some very nice wrappers and abstractions around JDBC - they can significantly reduce code clutter. You will end up adding an XML config file but this isn't necessarily a bad thing.

Spring can use pooling libraries to help with connection management - important in an enterprise environment.

link|flag
vote up 1 vote down

Also have a look at the Java Persistence API (JPA). It's another abstraction layer which can help you avoid any SQL or DAO's completely.

link|flag
You might still want to use SQL, for doing relational type things. – Tom Hawtin - tackline Jan 21 at 13:58
vote up 0 vote down

After a short glance at the source code of Table I’d strongly advise against it as it does nothing to prevent SQL injections. You’re a lot better of using “normal JDBC”, especially PreparedStatement.

link|flag
vote up 0 vote down

Spring with Hibernate is what you need.

link|flag

Your Answer

Get an OpenID
or

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