comparison src/main/java/org/monetdb/jdbc/MonetPreparedStatement.java @ 867:5a59910e8f87

Resolve some javadoc errors and warnings
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 01 Feb 2024 18:55:11 +0100 (15 months ago)
parents e890195256ac
children 90e9d216b232
comparison
equal deleted inserted replaced
866:6d229896c785 867:5a59910e8f87
767 @Override 767 @Override
768 public void setByte(final int parameterIndex, final byte x) throws SQLException { 768 public void setByte(final int parameterIndex, final byte x) throws SQLException {
769 setValue(parameterIndex, Byte.toString(x)); 769 setValue(parameterIndex, Byte.toString(x));
770 } 770 }
771 771
772 static final char[] HEXES = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; 772 private static final char[] HEXES = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
773 /** 773 /**
774 * Sets the designated parameter to the given Java array of bytes. The 774 * Sets the designated parameter to the given Java array of bytes. The
775 * driver converts this to an SQL VARBINARY or LONGVARBINARY (depending 775 * driver converts this to an SQL VARBINARY or LONGVARBINARY (depending
776 * on the argument's size relative to the driver's limits on VARBINARY 776 * on the argument's size relative to the driver's limits on VARBINARY
777 * values) when it sends it to the database. 777 * values) when it sends it to the database.