A B C D E F G I J K L M N O P Q R S T U V W Z

A

addAttrib(String) - Method in class com.workingdogs.village.KeyDef
Adds the named attribute to the KeyDef.
addRecord() - Method in class com.workingdogs.village.DataSet
Calls addRecord(DataSet)
addRecord(DataSet) - Method in class com.workingdogs.village.DataSet
Creates a new Record within this DataSet
AFTERDELETE - Static variable in class com.workingdogs.village.Enums
trigger state after a delete is run
AFTERINSERT - Static variable in class com.workingdogs.village.Enums
trigger state after a insert is run
AFTERUPDATE - Static variable in class com.workingdogs.village.Enums
trigger state after a update is run
ALL_RECORDS - Static variable in class com.workingdogs.village.DataSet
indicates that all records should be retrieved during a fetch
allRecordsRetrieved - Variable in class com.workingdogs.village.DataSet
have all records been retrieved with the fetchRecords?
allRecordsRetrieved() - Method in class com.workingdogs.village.DataSet
Check if all the records have been retrieve
appendTableName(String) - Method in class com.workingdogs.village.Schema
Appends data to the tableName that this schema was first created with.
asBigDecimal() - Method in class com.workingdogs.village.Value
Get the value as a BigDecimal
asBigDecimal(int) - Method in class com.workingdogs.village.Value
Get the value as a BigDecimal
asBoolean() - Method in class com.workingdogs.village.Value
Get the value as a asBoolean
asByte() - Method in class com.workingdogs.village.Value
Get the value as a asByte
asByteObj() - Method in class com.workingdogs.village.Value
Get the value as a Byte Object
asBytes() - Method in class com.workingdogs.village.Value
Get the value as a asBytes
asDate() - Method in class com.workingdogs.village.Value
Get the value as a asDate
asDouble() - Method in class com.workingdogs.village.Value
Get the value as a asDouble
asDoubleObj() - Method in class com.workingdogs.village.Value
Get the value as a Double Object
asFloat() - Method in class com.workingdogs.village.Value
Get the value as a asFloat
asFloatObj() - Method in class com.workingdogs.village.Value
Get the value as a Float Obj
asFormattedString(String, int[]) - Method in class com.workingdogs.village.Record
return the value of each column as a string.
asInt() - Method in class com.workingdogs.village.Value
Get the value as a asInt
asIntegerObj() - Method in class com.workingdogs.village.Value
Get the value as a Integer Ojbect
asLong() - Method in class com.workingdogs.village.Value
Get the value as a asLong
asLongObj() - Method in class com.workingdogs.village.Value
Get the value as a Long Object
asShort() - Method in class com.workingdogs.village.Value
Get the value as a asShort
asShortObj() - Method in class com.workingdogs.village.Value
Get the value as a Short Object
asString() - Method in class com.workingdogs.village.Value
Returns the string representation of this object
asTime() - Method in class com.workingdogs.village.Value
Get the value as a asTime
asTimestamp() - Method in class com.workingdogs.village.Value
Get the value as a asTimestamp
asUtilDate() - Method in class com.workingdogs.village.Value
Get the value as a asUtilDate
attributes() - Method in class com.workingdogs.village.Schema
List of columns to select from the table
attributes() - Method in class com.workingdogs.village.TableDataSet
this is a string that contains the columns for the table that this TableDataSet represents.
autoIncrement - Variable in class com.workingdogs.village.Column
is this an auto increment column?
autoIncrement() - Method in class com.workingdogs.village.Column
does this column auto increment?

B

BEFOREDELETE - Static variable in class com.workingdogs.village.Enums
trigger state before a delete is run
BEFOREINSERT - Static variable in class com.workingdogs.village.Enums
trigger state before a insert is run
BEFOREUPDATE - Static variable in class com.workingdogs.village.Enums
trigger state before a update is run
buildSelectString() - Method in class com.workingdogs.village.TableDataSet
Used by getSelectString to build the select string that was used to populate this TableDataSet.

C

clearRecords() - Method in class com.workingdogs.village.DataSet
Remove all records from the DataSet and nulls those records out and close() the DataSet.
close() - Method in class com.workingdogs.village.DataSet
Releases the records, closes the ResultSet and the Statement, and nulls the Schema and Connection references.
Column - class com.workingdogs.village.Column.
This class represents a Column in the database and its associated meta information.
Column() - Constructor for class com.workingdogs.village.Column
constructor
column(int) - Method in class com.workingdogs.village.Schema
Returns the requested Column object at index i
column(String) - Method in class com.workingdogs.village.Schema
Returns the requested Column object by name
columnNumber - Variable in class com.workingdogs.village.Column
column number in a schema object
columnNumber - Variable in class com.workingdogs.village.Value
the column number that this object came from
columnNumber() - Method in class com.workingdogs.village.Value
Gets the columnNumber which this value represents.
columns - Variable in class com.workingdogs.village.Schema
 
columns - Variable in class com.workingdogs.village.DataSet
the columns in the SELECT statement for this DataSet
columnsAttribute - Variable in class com.workingdogs.village.Schema
 
columnType - Variable in class com.workingdogs.village.Column
what java.sql.Type is this column?
columnTypeName - Variable in class com.workingdogs.village.Column
example: this column is of type "String"
com.workingdogs.village - package com.workingdogs.village
 
conn - Static variable in class com.workingdogs.village.TestMySQL
The database connection
conn - Variable in class com.workingdogs.village.DataSet
this DataSet's connection object
connection() - Method in class com.workingdogs.village.DataSet
Gets the current database connection
containsAttrib(String) - Method in class com.workingdogs.village.KeyDef
Determines if the KeyDef contains the requested Attribute.
containsRecord(int) - Method in class com.workingdogs.village.DataSet
Check to see if the DataSet contains a Record at 0 based position
createValues(ResultSet) - Method in class com.workingdogs.village.Record
Creates the value objects for this Record.

D

DataSet - class com.workingdogs.village.DataSet.
The DataSet represents a table in the database.
dataset() - Method in class com.workingdogs.village.Record
Gets the DataSet for this Record
DataSet() - Constructor for class com.workingdogs.village.DataSet
Private, not used
DataSet(Connection, Schema, KeyDef) - Constructor for class com.workingdogs.village.DataSet
Create a new DataSet with a connection, schema and KeyDef
DataSet(Connection, String) - Constructor for class com.workingdogs.village.DataSet
Create a new DataSet with a connection and a Table name
DataSet(Connection, String, KeyDef) - Constructor for class com.workingdogs.village.DataSet
Create a new DataSet with a connection, tablename and KeyDef
DataSet(Connection, String, String) - Constructor for class com.workingdogs.village.DataSet
Create a new DataSet with a connection, tablename and list of columns
DataSet(Connection, String, String, KeyDef) - Constructor for class com.workingdogs.village.DataSet
Create a new DataSet with a connection, tableName, columns and a KeyDef
DataSetException - exception com.workingdogs.village.DataSetException.
A DataSetException is thrown if there is an error.
DataSetException() - Constructor for class com.workingdogs.village.DataSetException
 
DataSetException(String) - Constructor for class com.workingdogs.village.DataSetException
 
DB_CONNECTION - Static variable in class com.workingdogs.village.TestMySQL
mm MySQL Driver setup
DB_DRIVER - Static variable in class com.workingdogs.village.TestMySQL
mm MySQL Driver setup
DB_HOST - Static variable in class com.workingdogs.village.TestMySQL
This is the name of the machine that is hosting the MySQL server
DB_NAME - Static variable in class com.workingdogs.village.TestMySQL
This is the name of the database.
DB_PASS - Static variable in class com.workingdogs.village.TestMySQL
the password for the user
DB_TABLE - Static variable in class com.workingdogs.village.TestMySQL
This is the name of the table in the DB_NAME
DB_USER - Static variable in class com.workingdogs.village.TestMySQL
This is the user to log into the database as.
dbKonaMethod() - Method in class com.workingdogs.village.Column
unknown use
dbType() - Method in class com.workingdogs.village.Column
the data type of a column
debug(int, Exception) - Static method in class com.workingdogs.village.TestMySQL
 
debug(int, String) - Static method in class com.workingdogs.village.TestMySQL
 
debug(int, String, int) - Static method in class com.workingdogs.village.TestMySQL
 
debug(int, String, String) - Static method in class com.workingdogs.village.TestMySQL
 
debugging - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
debugInfo() - Method in class com.workingdogs.village.TableDataSet
Hell if I know what this does.
DELETE - Static variable in class com.workingdogs.village.Enums
A record marked for delete

E

Enums - class com.workingdogs.village.Enums.
A class for constants.
Enums() - Constructor for class com.workingdogs.village.Enums
Doesn't do anything

F

FAILED - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
fetchRecords() - Method in class com.workingdogs.village.DataSet
Causes the DataSet to hit the database and fetch all the records.
fetchRecords() - Method in class com.workingdogs.village.TableDataSet
Use the TDS fetchRecords instead of the DataSet.fetchRecords
fetchRecords(int) - Method in class com.workingdogs.village.DataSet
Causes the DataSet to hit the database and fetch max records.
fetchRecords(int) - Method in class com.workingdogs.village.TableDataSet
Use the TDS fetchRecords instead of the DataSet.fetchRecords
fetchRecords(int, int) - Method in class com.workingdogs.village.DataSet
Causes the DataSet to hit the database and fetch max records, starting at start.
fetchRecords(int, int) - Method in class com.workingdogs.village.TableDataSet
Fetch start to max records. start is at Record 0
findRecord(int) - Method in class com.workingdogs.village.DataSet
Find Record at 0 based index position.

G

getAllTableNames() - Method in class com.workingdogs.village.Schema
returns all table names that this Schema represents
getAttrib(int) - Method in class com.workingdogs.village.KeyDef
getAttrib is 1 based.
getColumn(String) - Method in class com.workingdogs.village.Schema
Returns the requested Column object by name
getColumn(String, String) - Method in class com.workingdogs.village.Schema
Returns the requested Column object belonging to the specified table by name
getColumns() - Method in class com.workingdogs.village.Schema
Returns an array of columns
getColumns() - Method in class com.workingdogs.village.DataSet
Returns the columns attribute for the DataSet
getConnection() - Static method in class com.workingdogs.village.TestMySQL
 
getDeleteSaveString() - Method in class com.workingdogs.village.Record
Builds the SQL DELETE statement for this Record
getInsertSaveString() - Method in class com.workingdogs.village.Record
Builds the SQL INSERT statement for this Record
getOrder() - Method in class com.workingdogs.village.TableDataSet
Gets the value of the SQL portion of ORDER.
getOther() - Method in class com.workingdogs.village.TableDataSet
Gets the value of the SQL portion of OTHER.
getRecord(int) - Method in class com.workingdogs.village.DataSet
Get Record at 0 based index position
getRefreshQueryString() - Method in class com.workingdogs.village.Record
This builds the SELECT statement in order to refresh the contents of this Record.
getSaveString() - Method in class com.workingdogs.village.Record
Gets the appropriate SQL string for this record.
getSaveType() - Method in class com.workingdogs.village.Record
gets the internal save type as one of the defined privates (ie: ZOMBIE)
getSelectString() - Method in class com.workingdogs.village.DataSet
Classes extending this class must implement this method.
getSelectString() - Method in class com.workingdogs.village.TableDataSet
Builds the select string that was used to populate this TableDataSet.
getSelectString() - Method in class com.workingdogs.village.QueryDataSet
get the Select String that was used to create this QueryDataSet
getTableName() - Method in class com.workingdogs.village.Column
 
getTableName() - Method in class com.workingdogs.village.Schema
returns the table name that this Schema represents
getUpdateSaveString() - Method in class com.workingdogs.village.Record
Builds the SQL UPDATE statement for this Record
getValue() - Method in class com.workingdogs.village.Value
Gets the object from this Value
getValue(int) - Method in class com.workingdogs.village.Record
gets the value at index i
getValue(String) - Method in class com.workingdogs.village.Record
 
getWhere() - Method in class com.workingdogs.village.TableDataSet
Gets the value of the SQL portion of WHERE.

I

index(String) - Method in class com.workingdogs.village.Schema
Gets the index position of a named column.
index(String, String) - Method in class com.workingdogs.village.Schema
Gets the index position of a named column.
initializeRecord() - Method in class com.workingdogs.village.Record
Performs initialization for this Record.
INSERT - Static variable in class com.workingdogs.village.Enums
A record marked for insert
isAZombie() - Method in class com.workingdogs.village.Record
Determines if this record is a Zombie.
isBigDecimal() - Method in class com.workingdogs.village.Column
column isBigDecimal: 2 || 3
isBigDecimal() - Method in class com.workingdogs.village.Value
Is the value a isBigDecimal
isBinary() - Method in class com.workingdogs.village.Column
column isBinary: -2
isBoolean() - Method in class com.workingdogs.village.Column
column isBoolean: -7
isBoolean() - Method in class com.workingdogs.village.Value
Is the value a isBoolean
isByte() - Method in class com.workingdogs.village.Column
column isByte: -6
isByte() - Method in class com.workingdogs.village.Value
Is the value a isByte
isBytes() - Method in class com.workingdogs.village.Column
column isBytes: -4 || -3 || -2
isBytes() - Method in class com.workingdogs.village.Value
Is the value a isBytes
isClean - Variable in class com.workingdogs.village.Record
a 1 To 1 relationship between Values and whether they are clean or not
isDate() - Method in class com.workingdogs.village.Column
column isBytes: 91
isDate() - Method in class com.workingdogs.village.Value
Is the value a isDate
isDouble() - Method in class com.workingdogs.village.Column
column isDouble: 6 || 8
isDouble() - Method in class com.workingdogs.village.Value
Is the value a isDouble
isFloat() - Method in class com.workingdogs.village.Column
column isFloat: 7
isFloat() - Method in class com.workingdogs.village.Value
Is the value a isFloat
isInt() - Method in class com.workingdogs.village.Column
column isInt: 4
isInt() - Method in class com.workingdogs.village.Value
Is the value a isInt
isLong() - Method in class com.workingdogs.village.Column
column isLong: -5
isLong() - Method in class com.workingdogs.village.Value
Is the value a isLong
isLongVarBinary() - Method in class com.workingdogs.village.Column
column isLongVarBinary: -4
isNull() - Method in class com.workingdogs.village.Value
Is the value a isNull
isShort() - Method in class com.workingdogs.village.Column
column isShort: 5
isShort() - Method in class com.workingdogs.village.Value
Is the value a isShort
isSingleTable() - Method in class com.workingdogs.village.Schema
Checks to see if this DataSet represents one table in the database.
isString() - Method in class com.workingdogs.village.Column
column isString: -1 || -11 || 12
isString() - Method in class com.workingdogs.village.Value
Is the value a isString
isTime() - Method in class com.workingdogs.village.Column
column isTime: 92
isTime() - Method in class com.workingdogs.village.Value
Is the value a isTime
isTimestamp() - Method in class com.workingdogs.village.Column
column isTimestamp: 93
isTimestamp() - Method in class com.workingdogs.village.Value
Is the value a isTimestamp
isTrue(String) - Method in class com.workingdogs.village.Value
 
isUtilDate() - Method in class com.workingdogs.village.Value
Is the value a isUtilDate
isVarBinary() - Method in class com.workingdogs.village.Column
column isVarBinary: -3

J

javaType() - Method in class com.workingdogs.village.Column
unknown use

K

KeyDef - class com.workingdogs.village.KeyDef.
A KeyDef is a way to define the key columns in a table.
keydef() - Method in class com.workingdogs.village.DataSet
gets the KeyDef object for this DataSet
keydef() - Method in class com.workingdogs.village.TableDataSet
Returns the KeyDef for the DataSet
KeyDef() - Constructor for class com.workingdogs.village.KeyDef
Constructor for KeyDef.
keyDefValue - Variable in class com.workingdogs.village.DataSet
the KeyDef for this DataSet

L

lastFetchSize - Variable in class com.workingdogs.village.DataSet
number of records that were last fetched
lastFetchSize() - Method in class com.workingdogs.village.DataSet
The number of records that were fetched with the last fetchRecords.
length - Variable in class com.workingdogs.village.Column
what is the length of this column?
length() - Method in class com.workingdogs.village.Column
the storage length of a column

M

main(String[]) - Static method in class com.workingdogs.village.TestMySQL
 
markForInsert() - Method in class com.workingdogs.village.Record
Marks this record to be inserted when a save is executed.
markForUpdate() - Method in class com.workingdogs.village.Record
Marks this record to be updated when a save is executed.
markRecordClean() - Method in class com.workingdogs.village.Record
Marks all the values in this record as clean.
markToBeDeleted() - Method in class com.workingdogs.village.Record
Marks this record to be deleted when a save is executed.
markValueClean(int) - Method in class com.workingdogs.village.Record
marks a value at a given position as clean.
markValueClean(String) - Method in class com.workingdogs.village.Record
marks a value with a given column name as clean.
markValueDirty(int) - Method in class com.workingdogs.village.Record
marks a value at a given position as dirty.
markValueDirty(String) - Method in class com.workingdogs.village.Record
marks a value with a given column name as dirty.
maxColumnWidths(boolean) - Method in class com.workingdogs.village.DataSet
Calculates the maxColumnWidths for the column in a DataSet I really don't know what this is used for so it isn't implemented.
mySelf - Variable in class com.workingdogs.village.KeyDef
 

N

name - Variable in class com.workingdogs.village.Column
name of the column
name() - Method in class com.workingdogs.village.Column
the name of the column
needsToBeSaved() - Method in class com.workingdogs.village.Record
If the record is not clean, needs to be saved with an Update, Delete or Insert, it returns true.
nullAllowed - Variable in class com.workingdogs.village.Column
is null allowed for this column?
nullAllowed() - Method in class com.workingdogs.village.Column
does this column allow null?
num - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
numberOfColumns - Variable in class com.workingdogs.village.Schema
 
numberOfColumns - Variable in class com.workingdogs.village.Record
number of columns in this Record
numberOfColumns() - Method in class com.workingdogs.village.Schema
Gets the number of columns in this Schema

O

optimisticLockingCol - Variable in class com.workingdogs.village.TableDataSet
the optimistic locking column value
optimisticLockingCol() - Method in class com.workingdogs.village.TableDataSet
Gets the table column used for optomistic locking.
ORACLE - Static variable in class com.workingdogs.village.Enums
an oracle type
order - Variable in class com.workingdogs.village.TableDataSet
the value for the sql order by clause
order(String) - Method in class com.workingdogs.village.TableDataSet
Sets the value for the SQL portion of the ORDER statement
other - Variable in class com.workingdogs.village.TableDataSet
the value for the sql other clause
other(String) - Method in class com.workingdogs.village.TableDataSet
Sets the value for the SQL portion of the OTHER statement

P

parentDataSet - Variable in class com.workingdogs.village.Record
the parent DataSet for this Record
PASSED - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
populate(ResultSetMetaData, int, String) - Method in class com.workingdogs.village.Column
internal package method for populating a Column instance
populate(ResultSetMetaData, String) - Method in class com.workingdogs.village.Schema
Internal method which populates this Schema object with Columns.
precision - Variable in class com.workingdogs.village.Column
what is the precision of this column?
precision() - Method in class com.workingdogs.village.Column
the precision of the column
preparedStatemntBindMethod() - Method in class com.workingdogs.village.Column
unknown use

Q

QDS - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
QueryDataSet - class com.workingdogs.village.QueryDataSet.
This class is used for doing SQL select statements on the database.
QueryDataSet() - Constructor for class com.workingdogs.village.QueryDataSet
Private...does nothing.
QueryDataSet(Connection, String) - Constructor for class com.workingdogs.village.QueryDataSet
Creates a new QueryDataSet based on a connection and a select string
QueryDataSet(ResultSet) - Constructor for class com.workingdogs.village.QueryDataSet
Create a new QueryDataSet based on an existing resultSet

R

readOnly - Variable in class com.workingdogs.village.Column
is this a read only column?
readOnly() - Method in class com.workingdogs.village.Column
is this column read only?
Record - class com.workingdogs.village.Record.
A Record represents a row in the database.
Record() - Constructor for class com.workingdogs.village.Record
This isn't used and doesn't do anything.
Record(DataSet) - Constructor for class com.workingdogs.village.Record
Creates a new Record and sets the parent dataset to the passed in value.
Record(DataSet, boolean) - Constructor for class com.workingdogs.village.Record
This is a special case method for Record.
recordIsClean() - Method in class com.workingdogs.village.Record
Goes through all the values in the record to determine if it is clean or not.
recordRetrievedCount - Variable in class com.workingdogs.village.DataSet
number of records retrieved
records - Variable in class com.workingdogs.village.DataSet
this DataSet's collection of Record objects
refresh(Connection) - Method in class com.workingdogs.village.TableDataSet
This method refreshes all of the Records stored in this TableDataSet.
refresh(Connection) - Method in class com.workingdogs.village.Record
This method refreshes this Record's Value's.
refreshOnSave - Variable in class com.workingdogs.village.TableDataSet
 
refreshOnSave() - Method in class com.workingdogs.village.TableDataSet
Setting this causes each Record to refresh itself when a save() is performed on it.
releaseRecords() - Method in class com.workingdogs.village.DataSet
Removes the records from the DataSet, but does not null the records out
removeDeletedRecords() - Method in class com.workingdogs.village.TableDataSet
Removes any records that are marked as a zombie.
removeRecord(Record) - Method in class com.workingdogs.village.DataSet
Remove a record from the DataSet's internal storage
reset() - Method in class com.workingdogs.village.DataSet
Essentially the same as releaseRecords, but it won't work on a QueryDataSet that has been created with a ResultSet
resultSet - Variable in class com.workingdogs.village.DataSet
the result set for this DataSet
resultSet() - Method in class com.workingdogs.village.DataSet
Gets the ResultSet for this DataSet
resultSet() - Method in class com.workingdogs.village.TableDataSet
Returns the ResultSet for the DataSet
resultSetMethod() - Method in class com.workingdogs.village.Column
unknown use

S

save() - Method in class com.workingdogs.village.TableDataSet
Saves all the records in the DataSet.
save() - Method in class com.workingdogs.village.Record
Saves the data in this Record to the database.
save(boolean) - Method in class com.workingdogs.village.TableDataSet
Saves all the records in the DataSet with the intransaction boolean value.
save(Connection) - Method in class com.workingdogs.village.Record
Saves the data in this Record to the database.
save(Connection, boolean) - Method in class com.workingdogs.village.TableDataSet
Saves all the records in the DataSet with the given connection and intransaction boolean value.
saveType - Variable in class com.workingdogs.village.Record
this is the state of this record
saveWithDelete(Connection) - Method in class com.workingdogs.village.Record
Saves the data in this Record to the database with an DELETE statement
saveWithInsert(Connection) - Method in class com.workingdogs.village.Record
Saves the data in this Record to the database with an INSERT statement
saveWithoutStatusUpdate() - Method in class com.workingdogs.village.Record
 
saveWithoutStatusUpdate(Connection) - Method in class com.workingdogs.village.TableDataSet
Not yet implemented
saveWithUpdate(Connection) - Method in class com.workingdogs.village.Record
Saves the data in this Record to the database with an UPDATE statement
scale - Variable in class com.workingdogs.village.Column
what is the scale of this column?
scale() - Method in class com.workingdogs.village.Column
the scale of the column
schema - Variable in class com.workingdogs.village.DataSet
this DataSet's schema object
schema - Variable in class com.workingdogs.village.Record
a saved copy of the schema for this Record
Schema - class com.workingdogs.village.Schema.
The Schema object represents the Columns in a database table.
schema() - Method in class com.workingdogs.village.DataSet
Gets the Schema for this DataSet
schema() - Method in class com.workingdogs.village.TableDataSet
Returns the Schema for the DataSet
schema() - Method in class com.workingdogs.village.Record
Gets the schema for the parent DataSet
Schema() - Constructor for class com.workingdogs.village.Schema
A blank Schema object
schema(Connection, String) - Method in class com.workingdogs.village.Schema
Creates a Schema with all columns
schema(Connection, String, String) - Method in class com.workingdogs.village.Schema
Creates a Schema with the named columns in the columnsAttribute
schemaCache - Static variable in class com.workingdogs.village.Schema
 
searchable - Variable in class com.workingdogs.village.Column
is this a searchable column?
searchable() - Method in class com.workingdogs.village.Column
is this column searchable?
SelectStmt - class com.workingdogs.village.SelectStmt.
SelectStmt isn't implemented yet.
SelectStmt() - Constructor for class com.workingdogs.village.SelectStmt
SelectStmt isn't implemented yet.
SelectStmt(int) - Constructor for class com.workingdogs.village.SelectStmt
SelectStmt isn't implemented yet.
selectString - Variable in class com.workingdogs.village.DataSet
the select string that was used to build this DataSet
setAllRecordsRetrieved(boolean) - Method in class com.workingdogs.village.DataSet
Set all records retrieved
setAttributes(String) - Method in class com.workingdogs.village.Schema
Sets the columns to select from the table
setOptimisticLockingColumn(String) - Method in class com.workingdogs.village.TableDataSet
Sets the table column used for optomistic locking.
setParentDataSet(DataSet) - Method in class com.workingdogs.village.Record
Sets the parent DataSet for this record.
setPreparedStatementValue(PreparedStatement, int) - Method in class com.workingdogs.village.Value
This is used in Record in order to do a saveWithInsert/Update/Delete
setRefreshOnSave(boolean) - Method in class com.workingdogs.village.TableDataSet
Setting this causes each Record to refresh itself when a save() is performed on it.
setSaveType(int) - Method in class com.workingdogs.village.Record
sets the internal save type as one of the defined privates (ie: ZOMBIE)
setTableName(String) - Method in class com.workingdogs.village.Schema
Sets the table name that this Schema represents
setValue(int, BigDecimal) - Method in class com.workingdogs.village.Record
sets the value at pos with a BigDecimal
setValue(int, boolean) - Method in class com.workingdogs.village.Record
sets the value at pos with a boolean
setValue(int, byte[]) - Method in class com.workingdogs.village.Record
sets the value at pos with a byte[]
setValue(int, Date) - Method in class com.workingdogs.village.Record
sets the value at pos with a java.util.Date
setValue(int, Date) - Method in class com.workingdogs.village.Record
sets the value at pos with a java.sql.Date
setValue(int, double) - Method in class com.workingdogs.village.Record
sets the value at pos with a double
setValue(int, float) - Method in class com.workingdogs.village.Record
sets the value at pos with a float
setValue(int, int) - Method in class com.workingdogs.village.Record
sets the value at pos with a int
setValue(int, long) - Method in class com.workingdogs.village.Record
sets the value at pos with a long
setValue(int, String) - Method in class com.workingdogs.village.Record
sets the value at pos with a String
setValue(int, Time) - Method in class com.workingdogs.village.Record
sets the value at pos with a java.sql.Time
setValue(int, Timestamp) - Method in class com.workingdogs.village.Record
sets the value at pos with a java.sql.Timestamp
setValue(int, Value) - Method in class com.workingdogs.village.Record
sets the value at pos with a Value
setValue(Object) - Method in class com.workingdogs.village.Value
Sets the value of this object
setValue(String, BigDecimal) - Method in class com.workingdogs.village.Record
sets the value at column name with a BigDecimal
setValue(String, boolean) - Method in class com.workingdogs.village.Record
sets the value at column name with a boolean
setValue(String, byte[]) - Method in class com.workingdogs.village.Record
sets the value at column name with a byte[]
setValue(String, Date) - Method in class com.workingdogs.village.Record
sets the value at column name with a java.util.Date
setValue(String, Date) - Method in class com.workingdogs.village.Record
sets the value at column name with a java.sql.Date
setValue(String, double) - Method in class com.workingdogs.village.Record
sets the value at column name with a double
setValue(String, float) - Method in class com.workingdogs.village.Record
sets the value at column name with a float
setValue(String, int) - Method in class com.workingdogs.village.Record
sets the value at column name with a int
setValue(String, long) - Method in class com.workingdogs.village.Record
sets the value at column name with a long
setValue(String, String) - Method in class com.workingdogs.village.Record
sets the value at column name with a String
setValue(String, Time) - Method in class com.workingdogs.village.Record
sets the value at column name with a java.sql.Time
setValue(String, Timestamp) - Method in class com.workingdogs.village.Record
sets the value at column name with a java.sql.Timestamp
setValue(String, Value) - Method in class com.workingdogs.village.Record
sets the value at column name with a Value
setValueNull(int) - Method in class com.workingdogs.village.Record
sets the value at pos with a NULL
setValueNull(String) - Method in class com.workingdogs.village.Record
sets the value at column name with a NULL
singleTable - Variable in class com.workingdogs.village.Schema
 
size() - Method in class com.workingdogs.village.DataSet
Gets the number of Records in this DataSet.
size() - Method in class com.workingdogs.village.KeyDef
KeyDef's are 1 based, returns size - 1
size() - Method in class com.workingdogs.village.Record
the number of columns in this object
SQLSERVER - Static variable in class com.workingdogs.village.Enums
an sqlserver type
status - Variable in class com.workingdogs.village.Record
the status of a record
stmt - Variable in class com.workingdogs.village.DataSet
the Statement for this DataSet
SYBASE - Static variable in class com.workingdogs.village.Enums
an sybase type

T

TableDataSet - class com.workingdogs.village.TableDataSet.
This class is used for doing select/insert/delete/update on the database.
TableDataSet() - Constructor for class com.workingdogs.village.TableDataSet
Default constructor.
TableDataSet(Connection, Schema, KeyDef) - Constructor for class com.workingdogs.village.TableDataSet
 
TableDataSet(Connection, String) - Constructor for class com.workingdogs.village.TableDataSet
 
TableDataSet(Connection, String, KeyDef) - Constructor for class com.workingdogs.village.TableDataSet
 
TableDataSet(Connection, String, String) - Constructor for class com.workingdogs.village.TableDataSet
 
TableDataSet(Connection, String, String, KeyDef) - Constructor for class com.workingdogs.village.TableDataSet
 
tableHash - Variable in class com.workingdogs.village.Schema
This attribute is used to complement columns in the event that this schema represents more than one table.
tableName - Variable in class com.workingdogs.village.Column
name of table that this column belongs to
tableName - Variable in class com.workingdogs.village.Schema
 
tableName() - Method in class com.workingdogs.village.Schema
returns the table name that this Schema represents
tableName() - Method in class com.workingdogs.village.DataSet
Gets the tableName defined in the schema
tableName() - Method in class com.workingdogs.village.TableDataSet
The name of the table for which this TableDataSet was created.
tableQualifier(String) - Method in class com.workingdogs.village.TableDataSet
This sets additional SQL for the table name.
TDS - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
test(int, int, int) - Static method in class com.workingdogs.village.TestMySQL
 
test(int, String, String) - Static method in class com.workingdogs.village.TestMySQL
 
testCount - Static variable in class com.workingdogs.village.TestMySQL
used for debugging
testDeleteSomeRecords() - Static method in class com.workingdogs.village.TestMySQL
This test verifies that deleting multiple records actually works. after execution, there should be no more records in the database.
TestMySQL - class com.workingdogs.village.TestMySQL.
This class is used for testing the functionality of this product.
TestMySQL() - Constructor for class com.workingdogs.village.TestMySQL
 
testQueryDataSet() - Static method in class com.workingdogs.village.TestMySQL
 
testRemoveRecord() - Static method in class com.workingdogs.village.TestMySQL
This test will throw a DataSetException.
testTableDataSet() - Static method in class com.workingdogs.village.TestMySQL
 
testTableDataSet2() - Static method in class com.workingdogs.village.TestMySQL
 
testTableDataSet3() - Static method in class com.workingdogs.village.TestMySQL
 
testTableDataSet4() - Static method in class com.workingdogs.village.TestMySQL
 
toBeSavedWithDelete() - Method in class com.workingdogs.village.Record
whether or not this Record is to be saved with an SQL delete statement
toBeSavedWithInsert() - Method in class com.workingdogs.village.Record
whether or not this Record is to be saved with an SQL insert statement
toBeSavedWithUpdate() - Method in class com.workingdogs.village.Record
whether or not this Record is to be saved with an SQL update statement
toString() - Method in class com.workingdogs.village.Schema
This returns a representation of this Schema
toString() - Method in class com.workingdogs.village.DataSet
This returns a represention of this DataSet
toString() - Method in class com.workingdogs.village.Record
This returns a representation of this Record
toString() - Method in class com.workingdogs.village.Value
Returns the string representation of this object
totalFetchCount - Variable in class com.workingdogs.village.DataSet
number of records total that have been fetched
type - Variable in class com.workingdogs.village.Column
the column type resolved internally
type - Variable in class com.workingdogs.village.Value
what sql type of object is this?
type() - Method in class com.workingdogs.village.Column
the type of the column as a string
type() - Method in class com.workingdogs.village.Value
Return the type of this value
typeEnum() - Method in class com.workingdogs.village.Column
the data type of a column

U

UNKNOWN - Static variable in class com.workingdogs.village.Enums
an unknown type
unmarkToBeDeleted() - Method in class com.workingdogs.village.Record
Unmarks a record that has been marked for deletion.
UPDATE - Static variable in class com.workingdogs.village.Enums
A record marked for update
updateStatus() - Method in class com.workingdogs.village.TableDataSet
Not yet implemented
updateStatus() - Method in class com.workingdogs.village.Record
Updates the status of a Record after a saveWithoutStatusUpdate()

V

Value - class com.workingdogs.village.Value.
A Value represents a single cell in a database table.
Value(ResultSet, int, int) - Constructor for class com.workingdogs.village.Value
Creates a new Value object based on the ResultSet, columnNumber and type
valueIsClean(int) - Method in class com.workingdogs.village.Record
Determines whether or not a value stored in the record is clean.
valueIsClean(String) - Method in class com.workingdogs.village.Record
Determines whether or not a value stored in the record is clean.
valueObject - Variable in class com.workingdogs.village.Value
the object that is stored in this object
values - Variable in class com.workingdogs.village.Record
an array of Value objects, this is 1 based

W

where - Variable in class com.workingdogs.village.TableDataSet
the value for the sql where clause
where(String) - Method in class com.workingdogs.village.TableDataSet
Sets the value for the SQL portion of the WHERE statement

Z

ZOMBIE - Static variable in class com.workingdogs.village.Enums
DataSet record that has been deleted but not removed from the DataSet

A B C D E F G I J K L M N O P Q R S T U V W Z

Copyright © 1999-2002 Share.Whichever.com All Rights Reserved.