Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Recordset Disappears from Behaviours Panel

Participant ,
Jan 19, 2009 Jan 19, 2009
I came back to a page that was working fine when I uploaded it to my server.

But somehow the record count was not working. So I had a look at the file and it seemed fine.
The only thing that was odd was that the Server Behaviour panel was showing a little red Exclamation Mark on the side.

And I noticed that the Recordset was missing.

How can I get it back? I think this is why the count is not working.

The strange thing is I still have the recordset in my page code.

:'(

mysql_select_db($database_db, $db);
$query_jobs_locations = "SELECT city_name, count(jobs.job_id) as job_count
FROM city
LEFT JOIN restaurants ON
restaurants.rest_city = city.city_name
LEFT JOIN jobs ON
restaurants.rest_id = jobs.rest_id AND
job_status = 'ON'
GROUP BY city_name";
$jobs_locations = mysql_query($query_jobs_locations, $db) or die(mysql_error());
$row_jobs_locations = mysql_fetch_assoc($jobs_locations);
$totalRows_jobs_locations = mysql_num_rows($jobs_locations);
TOPICS
Server side applications
321
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Jan 20, 2009 Jan 20, 2009
From my experience this happens when you make manual corrections and DW
has no clue how to work with it.

Most of my recordsets are this way because I use loads of store
procedures and multiple vars that DW does not support.


Translate
LEGEND ,
Jan 20, 2009 Jan 20, 2009
LATEST
From my experience this happens when you make manual corrections and DW
has no clue how to work with it.

Most of my recordsets are this way because I use loads of store
procedures and multiple vars that DW does not support.


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines