db_query for delete is not working in PHP code, but is executing fine directly in mysql

196 Views Asked by At

When I run this script on my site, it does not delete any rows, even though the output shows that the query was successful (It outputs the delete query written out, for now). When I run the query in mysql directly, it does delete the rows.

    if (db_query("DELETE FROM {watchdog} WHERE ((type = 'user' AND message IN ('Session opened for %name.', 'Session closed for %name.', 'New user: %name (%email).')) OR type = 'access denied' OR (type = 'smtp' AND message = 'Sending mail to: @to')) AND hostname = '%s'", array($hostname)))
    {
      echo "<br />DELETE FROM watchdog WHERE ((type = 'user' AND message IN ('Session opened for %name.', 'Session closed for %name.', 'New user: %name (%email).')) OR type = 'access denied' OR (type = 'smtp' AND message = 'Sending mail to: @to')) AND hostname = '$hostname'";
    }
    else
    {
      echo "<br />could not delete $hostname ";
    }

There are no error messages on screen or in any logs.

1

There are 1 best solutions below

0
On

Turns out I had to escape the percent signs

 ('Session opened for %name.', 'Session closed for %name.', 'New user: %name (%email).')) 

becomes

 ('Session opened for %%name.', 'Session closed for %%name.', 'New user: %%name (%%email).'))