dongtuo3530 2014-02-11 23:44
浏览 21
已采纳

使用PHP中的PDO基于主键读取MySQL数据库

My code doesn't seem to work. I'm using the following:

$statement   = $db->prepare("SELECT * FROM carts WHERE (order_id = ':order_id')");
$result      = $statement->execute(array(':order_id' => $order_id));
$result      = $statement->fetch(); 

Which returns a boolean according to gettype($result); print_r($result) simply displays Array, though this is not expected. The data I'm reading is:

My Data

So I should expect an Array to be returned, not a Boolean. The PDO is correct and working, as I can call a write command. What's the best way using PDO to read a row based on the Primary Key order_id into a parsable array?

And as a split, is there a more efficient way than SELECT * WHERE to read a single row of data from a TABLE when the data is based on the Primary Key?

  • 写回答

2条回答 默认 最新

  • doumou8527 2014-02-12 00:06
    关注

    before all, set properly your error mode. If you can run the query with single quotes without an error popping, set this:

    $db->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
    $statement = $db->prepare("SELECT * FROM carts WHERE order_id=:order_id");
    $result = $statement->execute(array(':order_id' => $order_id));
    $row = ($result ? $statement->fetch(PDO::FETCH_ASSOC) : array('problem' => 'with your query'));
    print_r($result);
    

    PDO fails with single-quotes around parameters. check your $result for the return value of execute(). you may have to specify a fetching mode for the fetch. depending on your sql database, parenthesis around the condition may also cause the query to fail.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀