I have a MSSQL Database, and I have a stored procedure for any possible query, most of them just return a row of data with 3 columns or just execute an INSERT
How in java to connect to the DB and execute a stored procedure, and retrieve some data ?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

A connection pool like DBCP makes a big difference. The connection time can be save this way.

Prepared statements can help the database to skip query parsing. The parsed statements will be cached.

Batch updates help when you're executing a statement repeatedly.

Setting the right fetch size is another optimization for queries.

link|improve this answer
I'm going to get just a row of data, always, this means I should set a fetch size of 1 ? – Chuck Norris Dec 5 '09 at 8:21
feedback
  1. Use the MSSQL JDBC Driver to create a connection to the database
  2. In jdbc, you need to create a CallableStatement to execute the procedure. It's like this:

.

CallableStatement callable = null;
try {
   String sqlCommand = "{call yourProcNameHere (?, ? /* ... */)}";
   callable = conn.prepareCall(sqlCommand);
   // ...
}
catch (SQLException e) {
   // ...
}
finally {
   / ...
}
link|improve this answer
2  
The jTDS driver can be used to connect to MSSQL and Sybase. jtds.sourceforge.net – crowne Dec 2 '09 at 10:11
feedback

By reading and working through a JDBC Tutorial.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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