ColdFusion Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming Languages - MoreColdFusion Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
  #1  
Old July 21st, 2003, 11:23 PM
trishaDawn trishaDawn is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 4 trishaDawn User rank is Private First Class (20 - 50 Reputation Level)trishaDawn User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
HELP! category - subcategory relationship output

Please, I cant think anymore...

Due to this forum, I almost have my "application" working!!

I need to display a main category, it's subcategories and their respective items.

I have three tables:

tbMemos (memoID, memoName)
tbCategories (catID, catName, catParentCatID)
tbMemoCategories (memoCatID, memoID, catID)

tbMemos
memoID memoName
1 Good Morning
2 Good Afternoon
3 Good Evening

tbCategories
catID catName catParentCatID
1 Leadership 0
2 Roles 1
3 Legislation 1
4 Architecture 0
5 Servers 4
6 Acquisition 0
7 Cell Phones 6

etc...

tbMemoCategories (ties these to the tbMemos table)
memoCatID memoID catID
1 1 4
2 2 7
3 3 2

etc...

DESIRED Output:

Leadership (MAIN CATEGORY)

Roles (SUBCATEGORY)
memo
memo
memo

Leadership (SUBCATEGORY)
memo
memo
memo
memo
memo
memo

etc....

My problem:
I cannot figure out how to ouput as such. My output looks like this...

Leadership (MAIN CATEGORY)

Roles (SUBCATEGORY)
memo
Roles (SUBCATEGORY)
memo
Roles (SUBCATEGORY)
memo

Leadership (SUBCATEGORY)
memo
Leadership (SUBCATEGORY)
memo
Leadership (SUBCATEGORY)
memo
Leadership (SUBCATEGORY)
memo
Leadership (SUBCATEGORY)
memo
Leadership (SUBCATEGORY)
memo

etc...

I've tried "group" by CatID in the output but I get:

Leadership (MAIN CATEGORY)

Roles (SUBCATEGORY)
memo

Leadership (SUBCATEGORY)
memo

etc... (not looping through the memos)

Here is my code:

<cfquery name="getMain" datasource="CIO">
SELECT catName
FROM tbcategories
WHERE catID = #url.catID#
</cfquery>

<cfquery name="getMemos" datasource="CIO">
SELECT tbMemos.memoID, memoName, tbCategories.catID, tbCategories.catParentCatID, tbCategories.catName, tbMemoCategories.catID, tbMemoCategories.memoID

FROM tbMemos, tbCategories, tbMemoCategories

WHERE tbMemos.memoID = tbMemoCategories.memoID AND
tbMemoCategories.catID = tbCategories.catID AND
tbCategories.catParentCatID = #url.catID#
ORDER BY tbMemoCategories.catID
</cfquery>


<cfoutput query="getMain">
<tr><td>#catName</td></tr>
</cfoutput>

<cfoutput query="getMemos" >
<tr><td>
#catName# #memoName#
</tr>
</cfoutput>

</table>

PLEASE HELP - WILL BE SO GRATEFUL!
Comments on this post
Gran Roguismo agrees!

Reply With Quote
  #2  
Old July 24th, 2003, 07:14 AM
DeepDown DeepDown is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2003
Location: Netherlands
Posts: 99 DeepDown User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 1 m 8 sec
Reputation Power: 5
If I understand the problem correctly, this should do the trick...

<cfoutput query="getMemos" group="CatID">

#catName#

<cfoutput>
#memoName#
</cfoutput>

</cfoutput>
Comments on this post
Gran Roguismo agrees!

Reply With Quote
  #3  
Old July 25th, 2003, 07:55 AM
trishaDawn trishaDawn is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2003
Posts: 4 trishaDawn User rank is Private First Class (20 - 50 Reputation Level)trishaDawn User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Talking

Thank You so much for replying with the correct solution!

I mustve tried every combination but that one!

Youre the best!

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreColdFusion Development > HELP! category - subcategory relationship output


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway