コード例 #1
0
 public void setSQLXML(String parameterName, SQLXML value) throws SQLException {
   checkOpen();
   try {
     ((CallableStatement) _stmt).setSQLXML(parameterName, value);
   } catch (SQLException e) {
     handleException(e);
   }
 }
コード例 #2
0
  @Override
  public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
    try {
      _cstmt.setSQLXML(parameterName, xmlObject);
    } catch (SQLException e) {
      onSqlException(e);

      throw e;
    } catch (RuntimeException e) {
      onRuntimeException(e);

      throw e;
    }
  }
コード例 #3
0
 public void setSQLXML(String parameterName, SQLXML xmlObject) throws SQLException {
   passThru.setSQLXML(parameterName, xmlObject);
 }