I been trying to understand Magento and I read many things on the wiki, but I couldn’t figure out How does Magento works with database tables? because I didn’t see any SQL
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you watch your MySQl log, the calls made by magento can sometimes be 500 lines long or longer … These calls are dynamically constructed using XML files. The best way to manipulate Magento data manually is to use
MAGE::calls or use a direct database connection by using:It’s either that or calls that look like:
Magento is object oriented, so those are the most commonly accepted and used ways to retrieve/set data in Magento. I hope that helps.