Uses of Class
com.workingdogs.village.DataSet

Uses of DataSet in com.workingdogs.village
 

Subclasses of DataSet in com.workingdogs.village
 class QueryDataSet
          This class is used for doing SQL select statements on the database.
 class TableDataSet
          This class is used for doing select/insert/delete/update on the database.
 

Methods in com.workingdogs.village that return DataSet
 DataSet DataSet.clearRecords()
          Remove all records from the DataSet and nulls those records out and close() the DataSet.
 DataSet Record.dataset()
          Gets the DataSet for this Record
 DataSet DataSet.fetchRecords()
          Causes the DataSet to hit the database and fetch all the records.
 DataSet DataSet.fetchRecords(int max)
          Causes the DataSet to hit the database and fetch max records.
 DataSet TableDataSet.fetchRecords(int start, int max)
          Fetch start to max records.
 DataSet DataSet.fetchRecords(int start, int max)
          Causes the DataSet to hit the database and fetch max records, starting at start.
 DataSet DataSet.releaseRecords()
          Removes the records from the DataSet, but does not null the records out
 DataSet DataSet.reset()
          Essentially the same as releaseRecords, but it won't work on a QueryDataSet that has been created with a ResultSet
 

Methods in com.workingdogs.village with parameters of type DataSet
 Record DataSet.addRecord(DataSet ds)
          Creates a new Record within this DataSet
 

Constructors in com.workingdogs.village with parameters of type DataSet
Record(DataSet ds)
          Creates a new Record and sets the parent dataset to the passed in value.
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.