Supplying Values for PreparedStatement Parameters
by , 04-27-2012 at 07:08 PM (695 Views)
You must supply values in place of the question mark placeholders (if there are any) before you can execute a PreparedStatement object. Do this by calling one of the setter methods defined in the PreparedStatement class. The following statements supply the two question mark placeholders in the PreparedStatement named updateSales:
The first argument for each of these setter methods specifies the question mark placeholder. In this example, setInt specifies the first placeholder and setString specifies the second placeholder.Java Code:updateSales.setInt(1, e.getValue().intValue()); updateSales.setString(2, e.getKey());









Email Blog Entry
we've shared a phen
Today, 01:57 PM in Java Software