I got it, never mind.
/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
New 1/13/2005: DBActionPerformer::unlock() method, as of 1/13/2005, does nothing due to a thread-based caching conflict throughout the
entire application scope. This will need to be looked further into when time allows. However, because of the method performing no action,
you must release the locks on the associated tables that are created within the disassoc_all() method of ActionPerformer. The locks must be
released in order for you, the user, to be able to freely use all other unlocked tables including $section. Please refer to the notes on LOCK TABLES
in [url]http://dev.mysql.com/doc/mysql/en/LOCK_TABLES.html[/url] for more information
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
$query = new MySQLQuery('UNLOCK TABLES', $this->getDBConn());
$query->runQuery();
Phil