- Do you have Save() that automatically determines calling Create or
Update? determined by isDirty flag?

- What other methods do you have in DAO beside CRUD?

- Do you usually delete, or soft-delete (set a isDeleted bit on the
record)?  Would you still name the soft-delete function delete()?

- Does CRUD all takes in the bean as the argument? or just beanID for
read() and delete()?

- Do CRUD methods return boolean for success or fail, or throw the
actual database exception if error occurs?

- Lazy-loading to all children properties?

- Assuming you have no Gateway object, do you return a collection of
objects or a query?  or.. IBO?

- Do you have separate methods for returning array / query?  Or one
method that's based on a returnType parameter?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CFCDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/cfcdev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to