RE: increment problem

2009-03-06 Thread cfcom

Each sender selects from four different types of content categories to send
an email from. A loop is used to send out to each email on the list. I was
trying to work out using an update + 1 to count how to keep track of
everything, but ran into a wall.


-Original Message-
From: Peter Boughton [mailto:bought...@gmail.com] 
Sent: 2009-03-06 19:49
To: cf-talk
Subject: Re: increment problem


Not entirely sure what you're trying to do, but certainly you shouldn't have
four category/count tables.

Something closer to this:

Category_Count
--
Category_id (int)
Group_id (int)
create_date
create_time
count
sentby_email
Recip_id


Category

id (int)
colour (varchar?)


But I don't understand how the counting actually occurs, or what the colours
signify. 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320197
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: increment problem

2009-03-06 Thread Peter Boughton

Not entirely sure what you're trying to do, but certainly you shouldn't have 
four category/count tables.

Something closer to this:

Category_Count
--
Category_id (int)
Group_id (int)
create_date
create_time
count
sentby_email
Recip_id


Category

id (int)
colour (varchar?)


But I don't understand how the counting actually occurs, or what the colours 
signify. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320195
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


increment problem

2009-03-06 Thread cfcom

I'm having a brain drain on a simple increment

 

I need to log and count who sends an email, how often it's sent, which
category its sent from and how many times a recipient gets it. I'm sure
theres a better way

 

===

Sender Table:

Sender_id, Fname, lname, address, email, date, category, count

 

Recip Table:

Recip_id, Recip_Fname, Recip_lname, Recip_email, 

 

Category_Count Table:

BlueGroup_id (int), Bluecreate_date, Bluecreate_time, Bluecount,
Bluesentby_email, BlueRecip_id

RedGroup_id (int), Redcreate_date, Redcreate_time, Redcount,
Redsentby_email, RedRecip_id

YellowGroup_id (int), yellowcreate_date, yellowcreate_time, yellowcount,
yellowsentby_email, YellowRecip_id

WhiteGroup_id (int), Whitecreate_date, Whitecreate_time, Whitecount,
Whitesentby_email, WhiteRecip_id

 



UPDATE Category_Count

SET count = count +1



 

 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:320193
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4