remove the instance from the database
remove:function()
save:function()
do the actual insert/update,used by save method.
_updateInsert:function( update )
refresh the model data from database.
refresh:function()
populate the instance from a ResultSet.
_populateFromResult:function( result )
do a COUNT on the model
count:function( whereExpression, params )
do a SELECT on the model
select:function( whereExpression, params )
create the table for this model,creating triggers for forigenkeys and creating many-to-many tables if needed.
createTable:function()
drop the table and all associate triggers.
dropTable:function()
create triggers to inforce forigenkeys.
createTriggers:function()
drop triggers related to the table.
dropTriggers:function()
load objects from a array to the database.
load:function( objects, save )