Probleme mit db lock

Probleme mit db lock

am 04.07.2007 12:53:13 von STORMFIELD

Hi there,

i have execute an php script which as locked my entire db access.
here is my script:

if ($_SESSION["loginUsername"])
$query = "LOCK TABLES inventory READ, items WRITE";
else
$query = "LOCK TABLES inventory READ,
orders WRITE,
items WRITE";


in fact this query should only lock this tables not the entire access.

if try manually to unlock via pma i donĀ“t get access to this db!


what can i do now?