如何在prestashop管理控制器中查找受影响的查询

时间:2014-08-11 18:57:04

标签: php mysql sql prestashop

在prestashop管理控制器中,我们添加了一个像bellow这样的字段来生成表格列表视图。

$this->table        = 'product';
$this->list_id      = 'no_stock_products_attributes';
$this->lang         = true;
$this->identifier   = 'id_product';
$this->_orderBy     = 'id_product';
$this->_orderWay    = 'DESC';
$this->className    = 'Product';

我想查看最终/完整查询。有没有办法获得它并将提供可运行的查询?

喜欢print_r($this->query());或类似print_r($this->_query());

1 个答案:

答案 0 :(得分:0)

您可以在/config/defines.inc.php中启用调试分析 这将抛出一个列表,其中包含在页面底部执行的所有查询。 请注意,这也会在前端抛出一系列查询和技术数据。