*/ class Varien_Convert_Adapter_Zend_Db extends Varien_Convert_Adapter_Abstract { public function getResource() { if (!$this->_resource) { $this->_resource = Zend_Db::factory($this->getVar('adapter', 'Pdo_Mysql'), $this->getVars()); } return $this->_resource; } public function load() { return $this; } public function save() { return $this; } }