In the table like in the subject, which lists some of the
PreparedStatement methods, in the second column are:
Boolean, Double, Int, Long, Object, String
If we keep the Wrapper Classes, it could be (Int --> Integer):
Boolean, Double, Integer, Long, Object, String.
Or maybe it would be better to replace the Wrapper Classes types with their primitive counterparts?
boolean, double, int, long, Object, String
According to
the docs the
setX() methods do not have the overloads taking the Wrapper Classes as the 2nd parameter.