Background: I have some upgrade scripts, which implement methods only supported by new Magento versions. Magento 1.4 lacks these methods.
Task: My task is to implement support of Magento 1.4 in these scripts.
Solution: Currently I see this as checking if Magento version is higher then something, use the existing method, if lower then something, use plain MySQL / some methods that exist in Magento 1.4 / Zend, that result in same.
Problem: It is hard to understand what plain MySQL corresponds to methods, which I need to implement.
Questions:
- Is there a way to monitor the database for all scripts that get executed ?
- Is there a manual for Magento 1.4 methods that can be used in upgrade scripts ?
- Am I on the right path to solve this case ?