Using PHP, I am trying to delete a record, but I want to check if it was successful or not. Is anything returned from a successful DELETE FROM foo where bar = 'stuff'?
Alternatively, do you know any other ways to check if a DELETE was successful? Or am I better off just making sure the row exists before I delete it? I am trying to avoid another query if possible.
Assuming you are using mysql_query:
If you are using PDO::exec, then the manual says this:
Don’t want to answer snipe, but since this was selected as the answer, I should note that mysql_query will return
TRUEeven if the query did not actually remove anything. You should usemysql_affected_rowsto check for that.