• PDO 使用prepared statement 预处理LIMIT等非表字段参数


    由于一些驱动不支持原生的预处理语句,因此PDO可以完全模拟预处理。PDO的模拟预处理是默认打开的,即便MYSQL驱动本身支持预处理,在默认打开的状态下,PDO是不会用到MYSQL本身提供的预处理功能。PDO会把SQL语句进行模拟预处理之后会发送给MYSQL一个原始的SQL语句。

    而这种方式很诡异的是如果预处理的SQL语句中需要处理的字段不是表中的字段时,PDO会对绑定的参数无脑添加单引号,因而导致了异常或查询不到结果。

    解决这种问题的方法是设置PDO不去模拟预处理,而是交给MYSQL本身去做。方法是设置PDO的参数 ATTR_EMULATE_PREPARES 为 false

    或者,在绑定参数时,显式的把参数类型传递给绑定方法。

    原文 http://jpauli.github.io/2014/07/21/php-and-mysql-communication-mysqlnd.html

    PDO is different from mysql/mysqli because it has been designed to support other RDBMS than MySQL. In this fact, this extension is imperfect and tries to guess many things from the user, which could lead to strange behaviors. Let me explain.

    PDO ships with an SQL parser which is to emulate prepared statements if the underlying RDBMS doesn't support them. The problem is that this layer behaves differently from the RDBMS' one, when present. If you take the MySQL case, the PDO emulation layer is active by default when you prepare a query, and this one will never hit MySQL prepared statement layer which is probably not what you want. In fact, PDO's code will parse and build your query, never communicating with MySQL about this (by default). This is weird. Turn this emulation layer off as soon as you can :

    /* Disable PDO prepared statements emulation */
    $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, 0);
    
    /* This is exactly the same, take care, we really pass 0 here and not 1 */
    $pdo->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, 0);

    When the emulation layer is disabled, you rely with a true prepared statement. When it is enabled, PDO will take care of constructing the query for you, and will send a traditionnal normal query to the RDBMS. This has lots of drawbacks and can lead to strange behaviors. As PDO doesn't know anything about tables' columns, its emulation layer will quote every parameter when bound to an emulated prepared statement, even the parameter of integer type, which don't need such quoting. This leads to errors :

    $stmt = $pdo->prepare("SELECT user_id FROM users LIMIT :limit");
    $stmt->bindValue('limit', 10);
    $stmt->execute();
    
    $result = $stmt->fetch();
    var_dump($result);
    
    /*
    PHP Fatal error:  Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax;
    check the manual that corresponds to your MySQL server version for the right syntax to use near ''10'' 
    */

    We see from this error message that PDO escaped my 'limit' parameter quoting it wrongly, as it is an integer and doesn't need that. Let's try again with no emulation layer, relying only on the RDBMS layer (MySQL here):

    $pdo->setAttribute(PDO::ATTR_EMULATE_PREPARES, 0); /* Disable prepared statement emulation layer */
    $stmt = $pdo->prepare("SELECT user_id FROM users LIMIT :limit"); /* A true prepare() will be sent to the RDBMS, it has to support it */
    $stmt->bindValue('limit', 10);
    $stmt->execute();
    
    $result = $stmt->fetch();
    var_dump($result);
    /*
    array(4) {
      ["user_id"]=>
      string(7) "18"
      [0]=>
      string(7) "18"
    }
    */

    Things now work. If you would want to still use the emulation layer, you'd then need to precise to PDO that your parameter is of type integer, like this :

    /* Tells the PDO prepared statement emulation layer that this column is of type integer (SQL type) */
    $stmt->bindValue('limit', 10, PDO::PARAM_INT);
  • 相关阅读:
    MySQL for mac使用记录
    Jquery中$.get(),$.post(),$.ajax(),$.getJSON()的用法总结
    前端学数据库之基础操作
    前端CSS预处理器Sass
    ionic + cordova+angularJs 搭建的H5 App完整版总结
    HTML5的新语义化的标签
    angularJS- $http请求
    SEO优化---学会建立高转化率的网站关键词库
    当AngularJS POST方法碰上PHP
    从一个程序员的角度看——微信小应用
  • 原文地址:https://www.cnblogs.com/mysic/p/6535913.html
Copyright © 2020-2023  润新知