Name

Row

Synopsis

Class Name:

com.ora.jsp.sql.Row

Extends:

None

Implements:

None

Description

The Row class represents a row in a database query result. It contains a collection of com.ora.jsp.sql.Column objects.

Class Summary

public class Row { // Constructor public Row(java.sql.ResultSet rs) throws java.sql.SQLException, UnsupportedTypeException // Methods public java.math.BigDecimal getBigDecimal(int columnIndex) throws NoSuchColumnException, UnsupportedConversionException; public java.math.BigDecimal getBigDecimal(String columnName) throws NoSuchColumnException, UnsupportedConversionException; public boolean getBoolean(int columnIndex) throws NoSuchColumnException, UnsupportedConversionException; public boolean getBoolean(String columnName) throws NoSuchColumnException, UnsupportedConversionException; public byte getByte(int columnIndex) throws NoSuchColumnException, UnsupportedConversionException; public byte getByte(String columnName) throws NoSuchColumnException, UnsupportedConversionException; public byte[] getBytes(int columnIndex) throws NoSuchColumnException, UnsupportedConversionException; public byte[] getBytes(String columnName) throws NoSuchColumnException, UnsupportedConversionException; public int getColumnCount( ); public Column[] getColumns( ); public java.sql.Date getDate(int columnIndex) throws NoSuchColumnException, UnsupportedConversionException; public java.sql.Date getDate(String columnName) throws NoSuchColumnException, UnsupportedConversionException; public ...

Get Java Server Pages now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.