A C D E G I M P S T U

A

addIfFilledValidators(Form, String) - Static method in class examples.dbo.mollytestMgr
Validates a form field if it is filled by the user.
addValidators(Form, String, String, Map) - Static method in class examples.dbo.mollytestMgr
Creates and attaches validators for all the fields in the specified Form.
addValidators(Form, Map) - Static method in class examples.dbo.mollytestMgr
Convenience method that calls addValidators(Form, String, String, Map) with a null prefix/suffix and the specified map
addValidators(Form) - Static method in class examples.dbo.mollytestMgr
Convenience method that calls addValidators(Form, String, String, Map) with a null prefix/suffix/map
addValidators(Form, String) - Static method in class examples.dbo.mollytestMgr
Convenience method that calls #addValidators(Form, String, String, map) with the specified prefix and a null suffix/map
allFieldsMap() - Method in class examples.dbo.mollytest
Returns a map of all fields->values (as Strings) contained in this object.

C

columns() - Static method in class examples.dbo.mollytestMgr
Returns a comma delimited list of all columns in mollytest.
columns(String) - Static method in class examples.dbo.mollytestMgr
Returns a comma delimited list of all columns in mollytest.
count(Connection) - Static method in class examples.dbo.mollytestMgr
Returns the count of all rows in the table.
countUsing(Connection, mollytest, String) - Static method in class examples.dbo.mollytestMgr
Returns the rows count by querying the table with the contents of the specified instance of mollytest As many fields in alltypes can be set as needed and the values of all set fields (including fields explicitly set to null) are then used to perform the query.
countUsing(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
Convenience method that invokes getUsing with an empty clause parameter.
countWhere(Connection, String) - Static method in class examples.dbo.mollytestMgr
Returns the count of rows in the table using the specified where clause.

D

delete(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
Deletes this object from the database.
deleteByKey(Connection, int) - Static method in class examples.dbo.mollytestMgr
Deletes the rows with the specified primary key(s) from the database.
deleteUsing(Connection, mollytest, String) - Static method in class examples.dbo.mollytestMgr
Returns the rows returned by querying the table with the contents of the specified instance of alltypes or null if no rows were found.
deleteUsing(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
Convenience method that invokes getUsing with an empty clause parameter.
deleteWhere(Connection, String) - Static method in class examples.dbo.mollytestMgr
Deletes the rows with the specified where clause.

E

examples.dbo - package examples.dbo
 
exists(Connection, int) - Static method in class examples.dbo.mollytestMgr
Returns true if a row with the specified primary keys exists, false otherwise.
existsUsing(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
A thin wrapper around getUsing that returns false if no rows are returned, true otherwise.

G

get_created_on() - Method in class examples.dbo.mollytest
date (DATE); Nullable=true; AutoInc=false; MaxSize=13
get_email() - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
get_is_active() - Method in class examples.dbo.mollytest
bool (BIT); Nullable=true; AutoInc=false; MaxSize=1
get_name() - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
get_password() - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
get_uid() - Method in class examples.dbo.mollytest
serial (INTEGER); PK=yes; Nullable=false; AutoInc=true; MaxSize=10
getAll(Connection, String) - Static method in class examples.dbo.mollytestMgr
Returns all rows in the table.
getAll(Connection) - Static method in class examples.dbo.mollytestMgr
Convenience method that invokes getAll with an empty additional clause.
getByKey(Connection, int) - Static method in class examples.dbo.mollytestMgr
Returns the row corresponding to the specified primary key(s) of this table or null if no row was found.
getExtraData(Object) - Method in class examples.dbo.mollytest
Allows retrieving arbitrary object-specific data from this object.
getFromRS(ResultSet) - Static method in class examples.dbo.mollytestMgr
Creates and returns a new mollytest object that represents a row from the specified ResultSet.
getFromRS(ResultSet, String) - Static method in class examples.dbo.mollytestMgr
Creates and returns a new mollytest object that represents a row from the specified ResultSet.
getFromRS1Table(ResultSet) - Static method in class examples.dbo.mollytestMgr
Creates and returns a new mollytest object that represents a row from the specified ResultSet.
getLimited(Connection, String, int, int) - Static method in class examples.dbo.mollytestMgr
Returns all rows in the table starting from some row number and limited by a certain number of rows after that starting row.
getUsing(Connection, mollytest, String) - Static method in class examples.dbo.mollytestMgr
Returns the rows returned by querying the table with the value of the specified mollytest object or an empty list if no rows were found.
getUsing(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
Convenience method that invokes getUsing with an empty clause parameter.
getUsing(Connection, PreparedStatement) - Static method in class examples.dbo.mollytestMgr
This is a convenience method that runs the specified prepared statement to perform an arbitrary query.
getUsing(Connection, NamedParamStatement) - Static method in class examples.dbo.mollytestMgr
This is a convenience method that runs the specified NamedParamStatement to perform an arbitrary query.
getWhere(Connection, String) - Static method in class examples.dbo.mollytestMgr
Returns the rows returned by querying the table with the specified WHERE clause or an empty list if no rows were found.

I

isModified() - Method in class examples.dbo.mollytest
returns true if this object's data (for any field) has changed since it was created/loaded, false otherwise
isModified_created_on() - Method in class examples.dbo.mollytest
returns true if created_on has changed since it was created/loaded, false otherwise
isModified_email() - Method in class examples.dbo.mollytest
returns true if email has changed since it was created/loaded, false otherwise
isModified_is_active() - Method in class examples.dbo.mollytest
returns true if is_active has changed since it was created/loaded, false otherwise
isModified_name() - Method in class examples.dbo.mollytest
returns true if name has changed since it was created/loaded, false otherwise
isModified_password() - Method in class examples.dbo.mollytest
returns true if password has changed since it was created/loaded, false otherwise
isModified_uid() - Method in class examples.dbo.mollytest
returns true if uid has changed since it was created/loaded, false otherwise
isNew() - Method in class examples.dbo.mollytest
returns true if this object is newly created and has not been loaded from the database, false otherwise
isNullInDB_created_on() - Method in class examples.dbo.mollytest
returns true if created_on was null in the database
isNullInDB_email() - Method in class examples.dbo.mollytest
returns true if email was null in the database
isNullInDB_is_active() - Method in class examples.dbo.mollytest
returns true if is_active was null in the database
isNullInDB_name() - Method in class examples.dbo.mollytest
returns true if name was null in the database
isNullInDB_password() - Method in class examples.dbo.mollytest
returns true if password was null in the database
isNullInDB_uid() - Method in class examples.dbo.mollytest
returns true if uid was null in the database

M

mollytest - Class in examples.dbo
Represents a row in the mollytest table.
mollytest() - Constructor for class examples.dbo.mollytest
 
mollytestMgr - Class in examples.dbo
Manages various operations on the mollytest table.

P

putExtraData(Object, Object) - Method in class examples.dbo.mollytest
Allows putting arbitrary object-specific data into this object.

S

save(Connection, mollytest) - Static method in class examples.dbo.mollytestMgr
Saves the specified object into the database.
set_created_on(Date) - Method in class examples.dbo.mollytest
date (DATE); Nullable=true; AutoInc=false; MaxSize=13
set_email(String) - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
set_is_active(Boolean) - Method in class examples.dbo.mollytest
bool (BIT); Nullable=true; AutoInc=false; MaxSize=1
set_name(String) - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
set_password(String) - Method in class examples.dbo.mollytest
varchar (VARCHAR); Nullable=true; AutoInc=false; MaxSize=99
stats() - Static method in class examples.dbo.mollytestMgr
Returns usage statistics for this class

T

toString() - Method in class examples.dbo.mollytest
 
toString() - Method in class examples.dbo.mollytestMgr
 

U

update(Connection, mollytest, int) - Static method in class examples.dbo.mollytestMgr
Uses the specified object to update existing data in the database.

A C D E G I M P S T U