コード例 #1
0
  @Override
  public RowId getRowId(String parameterName) throws SQLException {
    try {
      return _cstmt.getRowId(parameterName);
    } catch (SQLException e) {
      onSqlException(e);

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

      throw e;
    }
  }
コード例 #2
0
 public RowId getRowId(String parameterName) throws SQLException {
   return passThru.getRowId(parameterName);
 }
コード例 #3
0
 public RowId getRowId(int parameterIndex) throws SQLException {
   return passThru.getRowId(parameterIndex);
 }