Query problem part 2

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Re: Query problem part 2

    You are getting the correct data. In your output, you should either do nested
    <cfoutputs> or a <cfloop> nested in an output. In either case, your initial
    output should be your main categorization. I'm not sure of what data is coming
    from what field. But, here's a stab at what your output should look like:
    <cfoutput query="getreviewcatConseil" group="BigCat">
    #BigCat#
    <cfoutput>
    #cat#
    </cfoutput>
    </cfoutput>

    Of course, you will need to put this into some sort of HTML structure, grid or
    add <br> after each output element.

    -- lnh:light;

    tejun Guest

  2. Similar Questions and Discussions

    1. #39906 [NEW]: Unable to use place holders as part of the actual SQL query with PDO's
      From: iab398 at bham dot ac dot uk Operating system: Unix PHP version: 5.2.0 PHP Bug Type: SQLite related Bug description: ...
    2. Problem with file downloading -- Part 2
      Hello World, Trying of ASPUpload 3.0 and csFileDownload components take the same effect -- while user #1 not finish downloading, all other...
    3. Okay, I figured out part of the problem ...
      I looked online and found a service pack for Internet Explorer 6. I downloaded it, and woo hoo! I can see my website. I am still worried about...
    4. Using a & in a query that is actually part of a name
      How do I use a & in a query without the script treating it a a concatenation character? For example, I have a company name in a field called "M &...
    5. Query for decimal part
      Hi Everybody, I got a table with a column named amount of type decimal(26,8) . I need to make a query to select the rows with no-integers values...
  3. #2

    Default Re: Query problem part 2

    thanx a lot for your. i think i understand better what nested means
    it works now.
    try to put that stuff on a flash file ;--))))
    merci
    newuser111 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139