はこのお試しください:テストするために
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
$sql = "Select * from catalog_product_flat_1";
$rows = $connection->fetchAll($sql); //fetchRow($sql), fetchOne($sql),...
Zend_Debug::dump($rows);
を、あなたのMagentoのインストールのルートにsandbox.phpファイルを作成し、次のコードを貼り付けることができます:
<?php
$mageFilename = 'app/Mage.php';
require_once $mageFilename;
Mage::setIsDeveloperMode(true);
ini_set('display_errors', 1);
umask(0);
Mage::app();
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
$sql = "Select * from catalog_product_flat_1";
$rows = $connection->fetchAll($sql); //fetchRow($sql), fetchOne($sql),...
Zend_Debug::dump($rows);
をし、指定したURLから呼び出します:
http://your-magento-url/sandbox.php
Magentoでカスタムクエリを書くべきではなく、モデルを代わりに使用してください。 – OSdave