That would probably depend on your database. How many tables do you have for
the users and contact info? 

1 for contactinfo
1 for users

....and a foreign key to relate the two... if so... the table with the
foreign key would be the LAST one to add since you'd need the id from the
other to complete it (else you'd have to get the ID and update a record
unnecessarily)

Or...

1 table for contactinfo
1 table for users
1 table to relate a user to his/her contact info

In this case it wouldn't much matter which one you added first since the
record won't be complete until they both exist and have been tied together
in the third table.

If one couldn't exist without the other though, you might consider
consolidating them into one cfc and one table. (if that's possible with
whatever you're doing)
 
..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
 

-----Original Message-----
From: Baz [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 03, 2006 3:37 PM
To: CF-Talk
Subject: Adding Multiple Objects

Hi,

If I had a USER cfc and a CONTACTINFO cfc and no user should exist without
having contact info - whats a good way to add a user to the DB?

Should I call AddUser() which in turn calls AddContactInfo()?

OR, should I call AddContactInfo() first, then take the ContactID and pass
it into AddUser()?

Cheers,
Baz






~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:228310
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to