2.17.2: 2011-06-17

net.sf.basedb.clients.web.servlet
Class PlotServlet.CFSqlResult

java.lang.Object
  extended by net.sf.basedb.clients.web.servlet.PlotServlet.CFSqlResult
All Implemented Interfaces:
SqlResult
Enclosing class:
PlotServlet

private static class PlotServlet.CFSqlResult
extends Object
implements SqlResult

A single result row that is combined from the parent and child results. 1 --> parent A, 2 --> parent M, 3 --> parent M - child M


Field Summary
private  SqlResult child
           
private  SqlResult parent
           
 
Constructor Summary
PlotServlet.CFSqlResult()
           
 
Method Summary
 float getFloat(int index)
          Get the value of the specified column as a float.
 int getInt(int index)
          Get the value of the specified column as an integer.
 Object getObject(int index)
          Get the value of the specified column as an object.
 short getShort(int index)
          Get the value of the specified column as a short.
 String getString(int index)
          Get the value of the specified column as a string.
(package private)  void setResult(SqlResult parent, SqlResult child)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

parent

private SqlResult parent

child

private SqlResult child
Constructor Detail

PlotServlet.CFSqlResult

PlotServlet.CFSqlResult()
Method Detail

setResult

void setResult(SqlResult parent,
               SqlResult child)

getFloat

public float getFloat(int index)
               throws SQLException
Description copied from interface: SqlResult
Get the value of the specified column as a float.

Specified by:
getFloat in interface SqlResult
Parameters:
index - The index of the column, starting at 1
Returns:
The value, or 0 if the database contains null
Throws:
SQLException - If an error occurs

getInt

public int getInt(int index)
           throws SQLException
Description copied from interface: SqlResult
Get the value of the specified column as an integer.

Specified by:
getInt in interface SqlResult
Parameters:
index - The index of the column, starting at 1
Returns:
The value, or 0 if the database contains null
Throws:
SQLException - If an error occurs

getObject

public Object getObject(int index)
                 throws SQLException
Description copied from interface: SqlResult
Get the value of the specified column as an object.

Specified by:
getObject in interface SqlResult
Parameters:
index - The index of the column, starting at 1
Returns:
The string value
Throws:
SQLException - If an error occurs

getShort

public short getShort(int index)
               throws SQLException
Description copied from interface: SqlResult
Get the value of the specified column as a short.

Specified by:
getShort in interface SqlResult
Parameters:
index - The index of the column, starting at 1
Returns:
The value, or 0 if the database contains null
Throws:
SQLException - If an error occurs

getString

public String getString(int index)
                 throws SQLException
Description copied from interface: SqlResult
Get the value of the specified column as a string.

Specified by:
getString in interface SqlResult
Parameters:
index - The index of the column, starting at 1
Returns:
The string value
Throws:
SQLException - If an error occurs

2.17.2: 2011-06-17