Hey everyone,
hope you all are having a productive week. I am in the process of writing a 
user account system with reactor....and I am somewhat stuck on a conceptual 
level of how I should accomplish this task. I have a "user" table, a 
"permission" table, and a "userPermissionJoin" table. There is a list of 
permissions that a user from the user table can have from the permissions table 
(thus the need for the userPermissionJoin table). Hope that makes sense...so 
heres the issue:
I saw the documentation on how to add:
<!--- create a customerRecord --->
<cfset CustomerRecord = Reactor.createRecord("Customer") />
<!--- get the user record's address --->
<cfset AddressRecord = CustomerRecord.getAddress() />
<!--- populate the customer and address --->
<cfset CustomerRecord.setUsername("jblow") />
<cfset CustomerRecord.setPassword("9ummy") />
<cfset CustomerRecord.setFirstName("Joe") />
<cfset CustomerRecord.setLastName("Blow") />
<cfset AddressRecord.setStreet1("1234 Left Turn Ln.") />
<cfset AddressRecord.setCity("Albuquerque") />
<cfset AddressRecord.setState("New Mexico") />
<cfset AddressRecord.setZip("87112") />
<!--- save the customer and address! --->
<cfset CustomerRecord.save() />
okay fine and good, but what happens if I have a list or an array of permission 
ID's that I need to have appended to a single user record? can someone help me 
try to understand what the best method of handling this is? Thanks so much for 
your help!! have a great day!
- Derek
-- 
  Derek Perez
  [EMAIL PROTECTED]



-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Reactor for ColdFusion Mailing List
[email protected]
Archives at: http://www.mail-archive.com/reactor%40doughughes.net/
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

Reply via email to