vortex.sql
Class vortexRecord

java.lang.Object
  extended by vortex.sql.vortexRecord

public class vortexRecord
extends java.lang.Object

Object containing the results of a select query.


Method Summary
 dbDescriptor[] colDescriptor()
          Return reference to array of column descriptions.
 void colSeek(int col)
          Column Seek
 java.lang.Object[] getCurrentRow()
          Return the current record from the table
 dbChannel getDbChannel()
          Return VORTEX dbChannel for this record
 dbCursor getDbCursor()
          Return VORTEX dbCursor for this record
 dbDescriptor getDbDescriptor(int col)
          Return VORTEX dbDescriptor for this column
 int getDid()
          Get DID
 java.lang.Object getNextCol()
          Fetch the field from the table
 java.lang.Object[] getRecord()
          Fetch the next record from the table
 java.lang.String getUpdateTable()
          getUpdateTable
 int numCols()
          Return number of fields in table
 boolean recordEOF()
          End of the record
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

recordEOF

public boolean recordEOF()
End of the record

Returns:
boolean of end of record

getCurrentRow

public java.lang.Object[] getCurrentRow()
Return the current record from the table

Returns:
an array of Strings representing the columns of the row.

getRecord

public java.lang.Object[] getRecord()
                             throws java.sql.SQLException
Fetch the next record from the table

Returns:
an array of Objects representing the columns of the row.
Throws:
java.sql.SQLException

getNextCol

public java.lang.Object getNextCol()
Fetch the field from the table

Returns:
an array of Strings representing the columns of the row.

colDescriptor

public dbDescriptor[] colDescriptor()
Return reference to array of column descriptions.

Returns:
an array of dbDescriptor

numCols

public int numCols()
Return number of fields in table

Returns:
the number of columns in this data set.

colSeek

public void colSeek(int col)
Column Seek

Parameters:
col - the index of the field to be retrieved.

getDid

public int getDid()
Get DID


getUpdateTable

public java.lang.String getUpdateTable()
getUpdateTable


getDbCursor

public dbCursor getDbCursor()
Return VORTEX dbCursor for this record

Returns:
dbCursor

getDbChannel

public dbChannel getDbChannel()
Return VORTEX dbChannel for this record

Returns:
dbChannel

getDbDescriptor

public dbDescriptor getDbDescriptor(int col)
                             throws java.sql.SQLException
Return VORTEX dbDescriptor for this column

Returns:
dbDescriptor
Throws:
java.sql.SQLException


Updated May 06 2016