I try and load tables via MySQL and get the following error?
MySQL said: Table \'cms\' was not locked with LOCK TABLES
Why does
The solution for me was to unlock the tables. They had been locked by a previous queries which failed before reaching the unlock tables statement.
unlock tables
UNLOCK TABLES SELECT ...