*/
public synchronized void initialize() throws PluginException
{
super.initialize();
final IApplication app = getApplication();
final ActionCollection coll = app.getActionCollection();
coll.add(new AnalyzeTableAction(app, _resources, this));
coll.add(new CreateMysqlTableScriptAction(app, _resources, this));
coll.add(new CheckTableAction.ChangedCheckTableAction(app, _resources, this));
coll.add(new CheckTableAction.ExtendedCheckTableAction(app, _resources, this));
coll.add(new CheckTableAction.FastCheckTableAction(app, _resources, this));
coll.add(new CheckTableAction.MediumCheckTableAction(app, _resources, this));
coll.add(new CheckTableAction.QuickCheckTableAction(app, _resources, this));
coll.add(new ExplainSelectTableAction(app, _resources, this));
coll.add(new ExplainTableAction(app, _resources, this));
coll.add(new OptimizeTableAction(app, _resources, this));
coll.add(new RenameTableAction(app, _resources, this));
coll.add(new CreateDatabaseAction(app, _resources, this));
coll.add(new DropDatabaseAction(app, _resources, this));
coll.add(new AlterTableAction(app, _resources, this));
// coll.add(new CreateTableAction(app, _resources, this));
coll.add(new CopyTableAction(app, _resources, this));
_mySQLMenu = createFullMysqlMenu();
app.addToMenu(IApplication.IMenuIDs.SESSION_MENU, _mySQLMenu);
super.registerSessionMenu(_mySQLMenu);
_prefsManager = new PluginQueryTokenizerPreferencesManager();
_prefsManager.initialize(this, new MysqlPreferenceBean());