comparison src/main/java/nl/cwi/monetdb/jdbc/MonetPreparedStatement.java @ 155:36f55bb8dd57

Implemented PreparedStatement method setNString().
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 24 Aug 2017 18:03:44 +0200 (2017-08-24)
parents 9a026aa272bb
children 2abd488159c4
comparison
equal deleted inserted replaced
154:9a026aa272bb 155:36f55bb8dd57
1623 * @throws SQLFeatureNotSupportedException the JDBC driver does 1623 * @throws SQLFeatureNotSupportedException the JDBC driver does
1624 * not support this method 1624 * not support this method
1625 */ 1625 */
1626 @Override 1626 @Override
1627 public void setNString(int parameterIndex, String value) throws SQLException { 1627 public void setNString(int parameterIndex, String value) throws SQLException {
1628 throw newSQLFeatureNotSupportedException("setNString"); 1628 setString(parameterIndex, value);
1629 } 1629 }
1630 1630
1631 /** 1631 /**
1632 * Sets the designated parameter to SQL NULL. 1632 * Sets the designated parameter to SQL NULL.
1633 * 1633 *