下面是我的代码
$result = Mage::getSingleton('core/resource')
->getConnection('core_read')
->fetchOne("SHOW TABLES LIKE 'dog_config'"); // error comes in this function
任何人都可以帮忙解决这个问题。 提前致谢
答案 0 :(得分:0)
按如下所示编写查询: -
$connection = Mage::getSingleton('core/resource')->getConnection('core_read');
$sql = "Your_SQL_Query"; // write your sql query here
$result = $connection->fetchOne($sql); // You can use fetchRow($sql), fetchAll($sql) as per your need.
注意: - 如果仍然出现错误,请在$connection
之前打印$rows
。
同时检查link。