I developed a module to access an external DB from Magento, when I test the module on a clean Magento install it works fine, but it fails when I test it on a clean Magento install that uses a table prefix, as it adds the prefix to the name of the external tables used on the module.
Is there a way to disable the table prefix for all the external tables used on the module?
I would like the module to work on installations with or without table prefix. I have tried adding:
<table_prefix><![CDATA[]]></table_prefix>
Under my section on the config.xml of my module without any luck.
Any idea?