Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the good practice for database operation in Java application? Do you construct the DML syntax in the Java code and send the statements to DB engine for execution, or you just collect the parameters and then make a call to stored procedure with the parameters via java code? or neither because that's just not how to do it? can anyone give an example of a full database utility classes to do database operations in Java app? also what about the transaction manager? My assignment is to make database operation that is modular in Java. Thanks

share|improve this question
2  
Wow ! That's a big question, maybe a bit too much for SO ^^ There are tons of tutorials out there that may help you. But cheers, you're discovering a wonderful world :p – Olivier Coilland Jun 16 '12 at 15:07
I'll +1 this one for mentioning stored procedures, a valuable but underused, overused and abused tool. But I'll also vote to close, because this question is overly broad - it could easily be broken up into at least three or four different questions, some of which have been asked here repeatedly... – thkala Jun 16 '12 at 15:35

closed as not a real question by Lion, Merlin, Dancrumb, BalusC, thkala Jun 16 '12 at 15:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

The answer depends on whether you're an object-oriented middle tier programmer or a database administrator.

The DBA is going to prefer stored procedures. They provide an interface, a layer of abstraction between the middle tier and the schema that projects data integrity and shields clients from schema changes.

It requires a DBA who's willing to work with clients to fulfill their needs and who's got the skill to write good stored procedures.

I think this approach makes sense if the database is shared by several applications.

One problem is that stored procedure languages are very vendor-specific. Switch vendors and you'll have to rewrite your entire persistence tier. PL/SQL is not T-SQL is not MySQL stored procedure syntax.

The middle tier object-oriented programmer will want to have control in their hands. Moving everything into the middle tier makes the programmer responsible for a lot. If the programmar sticks to ANSI SQL, and shies away from vendor-specific calls, it'll be possible to change databases just by switching JDBC driver JARs.

The reality is that middle tier software comes and goes, but data is forever. Database vendor changes are rare compared to the frequency of switching and refactoring the middle tier.

I'm not sure how you mean the word "modular".

The best example I know of is Spring. It has a wonderful persistence design that can use JDBC, Hibernate, TopLink, iBatis, or JPA. It has transaction managers that are easy to apply to service interfaces using aspects and annotations. I'd recommend either using that or, if you must write it yourself, emulate the design as much as possible.

share|improve this answer

Try to read JDBC Best Practice from DZONE site, and/or The Data Access Handbook book

share|improve this answer

Constructing a SQL statement in code is a terrible practice as it exposes you to SQL injection attacks.

It is also entirely unnecessary, as almost all modern databases allow you to create parameterized queries, where you substitute hard-coded values for strongly-typed parameters. JDBC passes the parameters as part of the remote call to the server, eliminating SQL injection or string conversion problems.

Parameterized queries are also faster, as most databases will be able to reuse execution plans for all queries with the same text, even if they have different parameters. It is much harder to reuse execution plans if the values are hard-coded in the query text.

The main problem of parameterized queries is that you have to recompile your code each time you make a change to the database schema or the query text. You may have to change the query text if eg. the DBA decides that a table should be split to improve read performance.

Stored procedures allow you to abstract the structure of the database and make DB maintenance easier, as you can change the stored procedures content without modifying client code. Calling a stored procedure is the same as executing a parameterized query and has the same performance benefits.

Another benefit is that you can speficy permissions for a stored procedure so that a client with minimal permissions can call a procedure without having permissions to directly access the tables themselves.

share|improve this answer
no, it doesn't expose you to sql injection attacks. what exposes you is building the sql and using string concatenation for the parameters, instead of using prepared statements and parameter replacement. As for stored procedures, one could argue that using SP is not maintainable because a) not all db's support stored procedures the same way and b) you have to write a SP for every query you want to make, and maintain that for every DB you want to support. Trust me, in the enterprise, this is not practical when you have dozens or hundreds of distrinct object types. – Matt Jun 16 '12 at 15:30
Wrong - never heard of PreparedStatements and binding? – duffymo Jun 16 '12 at 15:46
Parameterized queries or parameter replacement - what is the difference? Regarding stored procedure, I never said you have to create one stored procedure for every query, although code generation could make this much easier. As for maintenance, you have to consider maintenance both from the programmer's and the DBA's perspective. If simply adding a query hint requires recompilation, you have a serious problem. – Panagiotis Kanavos Jun 18 '12 at 7:23

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