Topic: Drop database doesn't work, why?
Running the uninstall from my plugin doesn't drop the table, no error/success Flash either:
<?php
$PDO = Record::getConnection();
if($PDO->exec("DROP TABLE IF EXISTS ".TABLE_PREFIX."foo") === false) {
Flash::set('error', __('Unable to drop table :tablename', array(':tablename' => TABLE_PREFIX.'foo')));
} else {
Flash::set('success', __('Plugin is succesfully uninstalled!'));
}Any idea why?

