No records found for MySQL Table

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

  1. #1

    Default No records found for MySQL Table

    Hello, We have a MySQL table that we had been using PHP to query, but now we
    want to query the table using CF 5.0 on a windows 2000 server. The datasource
    verifies just fine, however, the CF Query returns 0 results on a simple query
    such as this... select * from rentals Do I need to add something to the
    query? Thanks, Danny

    wittsdd Guest

  2. Similar Questions and Discussions

    1. How to get All Records in Table A that don't havematching ID in Table B
      I thought this would be a breeze, but I cannot seem to get it to work. I have two tables (Table A) and (Table B). (Table A) = all productid's ...
    2. Found Records
      is there a function that allows you to distinguish between found and omitted records? For example, a certain field = 0 for omitted, 1 for in the...
    3. Message for 0 Records Found
      if ($data = mysql_fetch_array($result)) { echo "<table>\n" do { echo "<tr>"; echo "<td>".$data."</td>\n"; echo "<td>".$data."</td>\n"; /* Add...
    4. newbie : trying to count records in mysql table
      Help, I get no output on this code // Connect to database. $dbh = mysql_connect("localhost","user","password"); mysql_select_db("survey"); ...
    5. Delete from one table with matching records in another table
      I'm an Access programmer making the migration to SQL Server, and I want to delete all the records from one table with matching records in another...
  3. #2

    Default Re: No records found for MySQL Table

    What does your output look like? Any errors?
    Defuse Guest

  4. #3

    Default Re: No records found for MySQL Table

    No error messages at all. In the cfm page it just returns 0 for the recordcount of the query. There are over 5,000 records in the table.
    wittsdd Guest

  5. #4

    Default Re: No records found for MySQL Table

    Would you mind posting some code?
    Defuse Guest

  6. #5

    Default Re: No records found for MySQL Table

    False Alarm Sorry for bother, my admin just told me he had the odbc connection
    pointed to the dev database. This is after swearing to me for hours that is
    pointed to production :( Thanks Again for the responses

    wittsdd 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