Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.hsqldb
Class Row  view Row download Row.java

java.lang.Object
  extended byorg.hsqldb.Row
Direct Known Subclasses:
CachedRow

class Row
extends java.lang.Object

In-memory representation of a database row object

Version:
1.7.1

Field Summary
protected  Node nPrimaryNode
           
protected  java.lang.Object[] oData
           
 
Constructor Summary
(package private) Row()
           
(package private) Row(Table t, java.lang.Object[] o)
          Constructor declaration
 
Method Summary
(package private)  void delete()
          Method declaration
(package private)  java.lang.Object[] getData()
          Method declaration
(package private)  Node getNextNode(Node n)
          Method declaration
(package private)  Node getNode(int index)
          Get the node for a given index.
(package private) static Row newRow(Table t, java.lang.Object[] o)
           
(package private)  void setPrimaryNode(Node primary)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

oData

protected java.lang.Object[] oData

nPrimaryNode

protected Node nPrimaryNode
Constructor Detail

Row

Row()

Row

Row(Table t,
    java.lang.Object[] o)
throws java.sql.SQLException
Constructor declaration

Method Detail

newRow

static Row newRow(Table t,
                  java.lang.Object[] o)
           throws java.sql.SQLException

setPrimaryNode

void setPrimaryNode(Node primary)

getNode

Node getNode(int index)
Get the node for a given index.


getNextNode

Node getNextNode(Node n)
Method declaration


getData

java.lang.Object[] getData()
Method declaration


delete

void delete()
      throws java.sql.SQLException
Method declaration