I'm trying to delete one row of data from a MySQL database (innodb) in a PHP script. But instead of deleting, the PHP script hangs on the query. It's a very simple delete statement:

`mysqli_query($conn, 'delete from picture where idPicture = "'. $temp . '"');'

If I echo the delete string and paste it into a MySQL query window the statement executes normally. Debugging with xdebug shows me just the same hanging on the above delete statement.

mysqli_error() gives me an output of :

Lock wait timeout exceeded; try restarting transaction

If I try to close the connection, afterwards I get this error:

Warning: mysqli_close() [function.mysqli-close]: Couldn't fetch mysqli in

I guess that's normal because the connection timed out. I also use the same connection for other delete/select statements and they all perform well.

If someone could explain what I'm doing wrong it would be really appreciated since I'm already breaking my back about this for 2 evenings :/ .

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

Lock wait timeout exceeded; try restarting transaction In other words the table is locked and cannot be accessed. Make sure no other MySQL sessions are accessing this table (there might be some persistent connections hanging for example).

COMMIT/ROLLBACK any other transactions that have anything to do with this table.

Try getting explicit LOCK for deleting.

See more here: http://dev.mysql.com/doc/refman/5.5/en/lock-tables-and-transactions.html

link|improve this answer
1  
Thanks i think i know why it doesn't work now! Gues its locked by some other statements that don't autocommit. Fixed it :) – Martijn Aug 18 '11 at 16:16
feedback

You've got something holding one or more locks on the records you're trying to delete. Could be an active transaction. You'll have to dig through the process list, show innodb status etc.. to figure out which one it is. If it's an InnoDB transaction, the 'show innodb status' will have the transaction data buried in the middle of the output.

Quickest solution is to restart mysql, which'll kill all transactions and locks, but then you'd probably end up having this problem again in short order. You'll have to figure out what's getting that lock, and why it's not being released.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.