December 2000
Intermediate to advanced
574 pages
17h 3m
English
Row
|
Class Name: |
com.ora.jsp.sql.Row |
|
Extends: |
None |
|
Implements: |
None |
The Row class represents a row in a database query
result. It contains a collection of
com.ora.jsp.sql.Column objects.
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 ...Read now
Unlock full access