Package org.springframework.jdbc

Examples of org.springframework.jdbc.InvalidResultSetAccessException


  public boolean isLast() throws InvalidResultSetAccessException {
    try {
      return this.resultSet.isLast();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here


  public boolean last() throws InvalidResultSetAccessException {
    try {
      return this.resultSet.last();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public boolean next() throws InvalidResultSetAccessException {
    try {
      return this.resultSet.next();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public boolean previous() throws InvalidResultSetAccessException {
    try {
      return this.resultSet.previous();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public boolean relative(int rows) throws InvalidResultSetAccessException {
    try {
      return this.resultSet.relative(rows);
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public boolean wasNull() throws InvalidResultSetAccessException {
    try {
      return this.resultSet.wasNull();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public String getCatalogName(int column) throws InvalidResultSetAccessException {
    try {
      return this.resultSetMetaData.getCatalogName(column);
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public String getColumnClassName(int column) throws InvalidResultSetAccessException {
    try {
      return this.resultSetMetaData.getColumnClassName(column);
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public int getColumnCount() throws InvalidResultSetAccessException {
    try {
      return this.resultSetMetaData.getColumnCount();
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

  public int getColumnDisplaySize(int column) throws InvalidResultSetAccessException {
    try {
      return this.resultSetMetaData.getColumnDisplaySize(column);
    }
    catch (SQLException se) {
      throw new InvalidResultSetAccessException(se);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.jdbc.InvalidResultSetAccessException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.