CFOUTPUT QUERY rowcount = 0

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default CFOUTPUT QUERY rowcount = 0

    Hello,

    I have a query which return 0 row.
    I have a CFOUTPUT QUERY which try to output my query.
    Coldfudion enter in the CFOUTPUT once EVEN if my query return 0 row.

    Is it correct?
    I thougth Coldfusion will never enter in the CFOUTPUT QUERY because the
    rowcount is 0 (zero).

    Could you confirm please. I try to reach the answer on internet but I found
    nothing.

    Thanks.

    jack456 Guest

  2. Similar Questions and Discussions

    1. question about SQL query and cfoutput with INNER JOIN
      I have a query that pulls data from two related tables (an Article Table and a Photo table, linked by ArticleID) Lets say i have 3 photos that are...
    2. .Recordsaffected or @@RowCount
      Is there a way in native ColdFusion, without going through a SQL Server stored procedure, to get the number of records affected by an UPDATE stmt?...
    3. rowcount
      How can I get a count of rows in a datagrid?
    4. Cannot put <cfoutput> around a <select> statement usinga query.
      <select name="t#this_tourn#_course_id"> <cfoutput query="get_courses"> <option value="#course_id#"> #course_name# - Par #par#</option> </select>...
    5. <cfoutput query> and TABLE formatting
      HI, I'm trying to output images from a database using <cfoutput query>. That part works fine. But the images display all in one column, one...
  3. #2

    Default Re: CFOUTPUT QUERY rowcount = 0

    Yes, it will never enter your <cfoutput query="q"> tag block.
    Post your codes to let us check maybe ?
    redevolve Guest

  4. #3

    Default Re: CFOUTPUT QUERY rowcount = 0

    You have to check for this in your code.

    <cfif query.recordcount is 0>
    do something
    <cfelse>
    do something else

    Originally posted by: jack456
    Hello,

    I have a query which return 0 row.
    I have a CFOUTPUT QUERY which try to output my query.
    Coldfudion enter in the CFOUTPUT once EVEN if my query return 0 row.

    Is it correct?
    I thougth Coldfusion will never enter in the CFOUTPUT QUERY because the
    rowcount is 0 (zero).

    Could you confirm please. I try to reach the answer on internet but I found
    nothing.

    Thanks.



    Dan Bracuk Guest

  5. #4

    Default Re: CFOUTPUT QUERY rowcount = 0

    First, Thank both for answer.

    I found the problem.
    In debug mode the query return 0 row BUT little far away there is an
    "QueryAddRow"! It's why Coldfusion enter in the cfoutput tag.

    Now I have to found WHY there is an QueryAddRow but this is another story!

    Thanks anymay.

    jack456 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