dongxi2163 2017-11-01 06:58
浏览 51
已采纳

Prestashop 1.6.1.14 - 数据库查询在Execute上返回1

I am currently using the code below in Prestashop to retrieve a cart id.

    public function hookDisplayPDFInvoice($params) {

    $order_invoice = $params['object'];
    $id_order = (int)$order_invoice->id_order;

    $sql = 'SELECT id_cart FROM '._DB_PREFIX_.'orders WHERE id_order="'.$id_order.'"';
    //example id_cart
    $id_cart = Db::getInstance()->execute($sql);
    return $id_cart;

In database, there are id_cart and id_timeslot. Table is called ps_cart_timeslot.

I am quite stuck as I am baffled as to why the data return is 1 for any data I am retrieving.

$id_order is fine, it is returning the right value. Any data select I am querying will return 1.

Am I missing anything? Pardon me if this is a silly mistake.

Thank you.

  • 写回答

1条回答 默认 最新

  • dongmie3526 2017-11-01 09:12
    关注

    For selects use Db::getInstance()->executeS($sql); or to get single value use Db::getInstance()->getValue($sql);

    However since PS 1.6 you should be using query builder.

    $query = new DbQuery();
    $query->select('id_cart')
          ->from('orders')
          ->where('id_order = ' . (int)$id_order);
    Db::getInstance(_PS_USE_SQL_SLAVE_)->getValue($query);
    // Or array of values
    Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS($query);
    

    execute() method returns only true or false while executeS() will return an array of select results (method can only be used for select queries) and getValue() will return the first value found in result.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?