If we can execute insert and update preparedStatement SQL using

Code:
int update(String sql,
           PreparedStatementSetter pss)
           throws DataAccessException
Then when we should use int[] argTypes with the above method.

Code:
int update(String sql,
           Object[] args,
           int[] argTypes)
           throws DataAccessException
What are the addintional benefit to use this int[] argTypes in preparedStatement.

Thanks in advance.

Thanks,

Ayush Suman

http://ayushsuman.blogspot.com