<legend id='KF2Cp'><style id='KF2Cp'><dir id='KF2Cp'><q id='KF2Cp'></q></dir></style></legend>

    <tfoot id='KF2Cp'></tfoot>

    <small id='KF2Cp'></small><noframes id='KF2Cp'>

      <bdo id='KF2Cp'></bdo><ul id='KF2Cp'></ul>

    1. <i id='KF2Cp'><tr id='KF2Cp'><dt id='KF2Cp'><q id='KF2Cp'><span id='KF2Cp'><b id='KF2Cp'><form id='KF2Cp'><ins id='KF2Cp'></ins><ul id='KF2Cp'></ul><sub id='KF2Cp'></sub></form><legend id='KF2Cp'></legend><bdo id='KF2Cp'><pre id='KF2Cp'><center id='KF2Cp'></center></pre></bdo></b><th id='KF2Cp'></th></span></q></dt></tr></i><div id='KF2Cp'><tfoot id='KF2Cp'></tfoot><dl id='KF2Cp'><fieldset id='KF2Cp'></fieldset></dl></div>

      如何将 pdo 的准备好的语句用于 order by 和 limit 子

      时间:2023-09-21
      <legend id='BRjXw'><style id='BRjXw'><dir id='BRjXw'><q id='BRjXw'></q></dir></style></legend>

          <bdo id='BRjXw'></bdo><ul id='BRjXw'></ul>
          <tfoot id='BRjXw'></tfoot>

          1. <small id='BRjXw'></small><noframes id='BRjXw'>

              <tbody id='BRjXw'></tbody>
              • <i id='BRjXw'><tr id='BRjXw'><dt id='BRjXw'><q id='BRjXw'><span id='BRjXw'><b id='BRjXw'><form id='BRjXw'><ins id='BRjXw'></ins><ul id='BRjXw'></ul><sub id='BRjXw'></sub></form><legend id='BRjXw'></legend><bdo id='BRjXw'><pre id='BRjXw'><center id='BRjXw'></center></pre></bdo></b><th id='BRjXw'></th></span></q></dt></tr></i><div id='BRjXw'><tfoot id='BRjXw'></tfoot><dl id='BRjXw'><fieldset id='BRjXw'></fieldset></dl></div>
                本文介绍了如何将 pdo 的准备好的语句用于 order by 和 limit 子句?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我想使用一个准备好的语句,其中传入的参数用于 ORDER BYLIMIT 子句,如下所示:

                I want to use a prepared statement in which the passed-in parameters are for the ORDER BY and LIMIT clauses, like so:

                $sql = 'SELECT * FROM table ORDER BY :sort :dir LIMIT :start, :results';
                $stmt = $dbh->prepare($sql);
                $stmt->execute(array(
                     'sort'  => $_GET['sort'], 
                     'dir'  => $_GET['dir'], 
                     'start'  => $_GET['start'],
                     'results' => $_GET['results'],
                     )
                    );
                

                但是 $stmt->fetchAll(PDO::FETCH_ASSOC); 什么都不返回.

                But $stmt->fetchAll(PDO::FETCH_ASSOC); returns nothing.

                有人能指出我做错了什么吗?可以做到吗?如果没有,我应该参考哪些可以使用参数的子句的完整列表?

                Can someone point out what's the wrong thing I am doing? Can it be done? If not,what should I reference for a complete list of clauses where parameters can be used?

                推荐答案

                使用后:

                $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
                

                我收到了消息:

                未捕获的异常 'PDOException' 与消息SQLSTATE[42000]:语法错误或访问冲突:1064 你有一个SQL 语法错误;检查与您的 MySQL 相对应的手册正确语法的服务器版本在第 1 行的0"、10"附近使用

                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 ''0', '10'' at line 1

                因此,当您使用数组进行执行时,它会将您的输入视为字符串,这对于 LIMIT 来说不是一个好主意

                So, when you use an array for execute, it consider your inputs as string which is not a good idea for LIMIT

                $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
                $sql = "SELECT * FROM table ORDER BY :sort :dir LIMIT :start, :results";
                $stmt = $dbh->prepare($sql);
                $stmt->bindParam(':start', $_GET['start'], PDO::PARAM_INT);
                $stmt->bindParam(':results', $_GET['results'], PDO::PARAM_INT);
                $stmt->bindParam(':sort', $_GET['sort']);
                $stmt->bindParam(':dir', $_GET['dir']);
                $stmt->execute();
                
                $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
                print_r($data);
                

                这篇关于如何将 pdo 的准备好的语句用于 order by 和 limit 子句?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:php pdo 准备重复变量 下一篇:PDO PHP 获取类

                相关文章

                最新文章

                • <bdo id='EDAT6'></bdo><ul id='EDAT6'></ul>
              • <legend id='EDAT6'><style id='EDAT6'><dir id='EDAT6'><q id='EDAT6'></q></dir></style></legend>

                  <tfoot id='EDAT6'></tfoot>

                    <small id='EDAT6'></small><noframes id='EDAT6'>

                    <i id='EDAT6'><tr id='EDAT6'><dt id='EDAT6'><q id='EDAT6'><span id='EDAT6'><b id='EDAT6'><form id='EDAT6'><ins id='EDAT6'></ins><ul id='EDAT6'></ul><sub id='EDAT6'></sub></form><legend id='EDAT6'></legend><bdo id='EDAT6'><pre id='EDAT6'><center id='EDAT6'></center></pre></bdo></b><th id='EDAT6'></th></span></q></dt></tr></i><div id='EDAT6'><tfoot id='EDAT6'></tfoot><dl id='EDAT6'><fieldset id='EDAT6'></fieldset></dl></div>