All Packages This Package Previous
java.lang.Object
|
+----jade.db.AceObject
|
+----jade.db.AceTable
AceTable is a subclass of AceObject
that adds specialized support for the results of table queries. Table
results are synthesized ACEDB objects: they do not exist in the the
ACE database, but are views into the database created on the fly from
Table-based queries.
AceTables have a predictable rectangular row/column structure:
root -> cell 0,0 -> cell 0,1 -> cell 0,2 -> ...
|
cell 1,0 -> cell 1,1 -> cell 1,2 -> ...
|
cell 2,0 -> cell 2,1 -> cell 1,2 -> ...
.
.
.
The tree can be manipulated and traversed as a hierarchical AceObject
tree, or converted into a conventional rectangular matrix for easy
access to the contents.
public int rowCount()
public int colCount()
public AceObject[][] toTable()
All Packages This Package Previous