I’m trying to build a simple Magento Module that needs to connect to the database at the start of each page request. All tables need to be accessible to it. I’ve been pulling my hair out trying to understand how to do it. The best I could figure out was that I need to set this in the config.xml file of my module, but exactly what that command is/how it may be used, i haven’t been able to figure out.
Can someone please guide me or show me how to accomplish this? If not, would it be too bad a practice to include a custom config.php file which connects to the database manually?
Are you trying to use a resource model or entity ? here is how you can query a table using raw SQL but you need to know the tablename.
When trying to all a model you can use
I use the second method for my custom modules and it has worked out fine for me , hope this answer helps 🙂