Need some insight on how this works

I have the following piece of code

  public static void updateOrdersPrepared(int productId , String productName){

    Connection con = getConnection();

    try {
            pstmt = con.prepareStatement 
                  ("update Orders set productname = ? where Prod_Id  = ?");

            pstmt.setInt(2, productId);
            pstmt.setString(1, productName);
            pstmt.executeUpdate();
            pstmt.close();
            con.close();

    } catch(SQLException ex) {
        System.err.println("SQLException: " + ex.getMessage());
    }
JOptionPane.showMessageDialog(null,"Data Updated into Orders Table");
}

Now if this method is called 'N' number of times , will the query plan for the prepared statement be computed 'N' times or just once ?

Is there a real advantage of using prepared statements in such scenarios ?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

It will depend on the RDBMS you are targeting.

SQL Server is able to cache a parameterised query plan for the statement "update Orders set productname = ? where Prod_Id = ?" so there will be a benefit. However, it is such a simple query that the benefit will likely be quite small.

You should measure in your particular circumstances (is your server CPU bound, or I/O bound? It's usually the latter).

As you are aware. the real advantage to using a PreparedStatement is preparing it once and then calling many times with different parameters set.

link|improve this answer
Will there be any difference if I use a normal statement instead of a prepared statement in this particular scenario ? – Rocky Feb 2 at 7:30
You will have to carry out some performance measurements. – Mitch Wheat Feb 2 at 7:32
feedback

Your Answer

 
or
required, but never shown

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