Closed mrotteveel closed 2 months ago
Currently we ignore the int scaleOrLength of PreparedStatement.setObject and ResultSet.updateObject methods. In the case of a Reader or InputStream, we should redirect to the appropriate set/updateCharacterStream or set/updateBinaryStream method.
int scaleOrLength
PreparedStatement.setObject
ResultSet.updateObject
Reader
InputStream
set
updateCharacterStream
updateBinaryStream
Currently we ignore the
int scaleOrLength
ofPreparedStatement.setObject
andResultSet.updateObject
methods. In the case of aReader
orInputStream
, we should redirect to the appropriateset
/updateCharacterStream
orset
/updateBinaryStream
method.