<bdo id='ibwrY'></bdo><ul id='ibwrY'></ul>
    <i id='ibwrY'><tr id='ibwrY'><dt id='ibwrY'><q id='ibwrY'><span id='ibwrY'><b id='ibwrY'><form id='ibwrY'><ins id='ibwrY'></ins><ul id='ibwrY'></ul><sub id='ibwrY'></sub></form><legend id='ibwrY'></legend><bdo id='ibwrY'><pre id='ibwrY'><center id='ibwrY'></center></pre></bdo></b><th id='ibwrY'></th></span></q></dt></tr></i><div id='ibwrY'><tfoot id='ibwrY'></tfoot><dl id='ibwrY'><fieldset id='ibwrY'></fieldset></dl></div>
  1. <legend id='ibwrY'><style id='ibwrY'><dir id='ibwrY'><q id='ibwrY'></q></dir></style></legend>
  2. <small id='ibwrY'></small><noframes id='ibwrY'>

    1. <tfoot id='ibwrY'></tfoot>

      如果第二个查询不起作用,则删除或撤消第一个查询

      delete or undo the first query if the second query did not work(如果第二个查询不起作用,则删除或撤消第一个查询)
      <legend id='URXOk'><style id='URXOk'><dir id='URXOk'><q id='URXOk'></q></dir></style></legend>

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

              <tbody id='URXOk'></tbody>

              <tfoot id='URXOk'></tfoot>

                本文介绍了如果第二个查询不起作用,则删除或撤消第一个查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我对此感到困惑.有什么方法可以测试所有查询是否正常工作并且不返回错误?如果是这样,执行它们或返回一些东西.

                im confused about this. Is there any way like to test if all queries are working and not returning erros? if so execute them or return something.

                我正在构建一个注册方法,它有 2 个部分:登录信息(用户名、密码)和通常的员工信息(姓名、电子邮件等).

                I am building a signup method, this have 2 parts: loginInfo(username, password) and the usual Employee info (name, email, etc..).

                signup 方法将 Employee 信息插入到 employee 表中,然后它获取 PRIMARY 键并将其与 loginInfo 一起插入到 login 表中

                The signup method inserts the Employee info into employee table, then it gets the PRIMARY key and insert it alongside with the loginInfo in the login table

                login 表有一个 UNIQUE 列,这应该在重复时返回错误.问题是插入的 employee 信息没有 login 信息.

                the login table has an UNIQUE column, this should return error on duplicated. The problem is that the employee info are inserted without a login information.

                我该如何解决这个问题?

                How can i solve this problem?

                我的代码:

                public function signUp($personInfo, $employeeInfo, $loginCredit){
                    try {
                        $stmt = $this->pdo->prepare("INSERT 
                            INTO `$this->employeeTable`
                                (`name`, `birthDay`, `phnNmb`, `email`, `address`, `idnNmb`, `insNmb`, `bankInfo`)
                            VALUES
                                (?, ?, ?, ?, ?, ?, ?, ?);
                        ");
                
                        $stmt->execute([
                            $personInfo["name"],
                            $employeeInfo["birthDay"],
                            $personInfo["phnNmb"],
                            $personInfo["email"],
                            json_encode($employeeInfo["address"]),
                            $employeeInfo["idnNmb"],
                            $employeeInfo["insNmb"],
                            json_encode($employeeInfo["bankInfo"])
                        ]);
                
                        $employeeId = $this->pdo->lastInsertId();
                
                        $insertloginCredit = $this->pdo->prepare("INSERT INTO `$this->loginTable` (`empId`, `userName`, `userPass`) VALUES ($employeeId, ?, ?);");
                        $insertloginCredit->execute($loginCredit["userName"], md5($loginCredit["userPass"]));
                
                        echo "done";
                
                    } catch (PDOException $err) {
                        die($err->getMessage());
                    }
                }
                

                推荐答案

                您在此处查找的内容称为事务.PDO 文档有一些对它们的解释.总之,您需要执行以下操作.

                What you're looking for here is called a transaction. The PDO docs have some explanation on them. In summary, you'd want to do the following.

                try{
                  $this->pdo->beginTransaction();
                  $stmt1 = $this->pdo->prepare(...);
                  $stmt1->execute(...);
                  $stmt2 = $this->pdo->prepare(...);
                  $stmt2->execute(...);
                  $this->pdo->commit();
                } catch (PDOException $e) {
                  $this->pdo->rollBack();
                }
                

                rollBack 函数会将数据库恢复到调用 beginTransaction 时的状态.

                The rollBack function will restore the database to the state it was in when beginTransaction was called.

                这篇关于如果第二个查询不起作用,则删除或撤消第一个查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                <legend id='CDACo'><style id='CDACo'><dir id='CDACo'><q id='CDACo'></q></dir></style></legend>
                • <tfoot id='CDACo'></tfoot>
                  <i id='CDACo'><tr id='CDACo'><dt id='CDACo'><q id='CDACo'><span id='CDACo'><b id='CDACo'><form id='CDACo'><ins id='CDACo'></ins><ul id='CDACo'></ul><sub id='CDACo'></sub></form><legend id='CDACo'></legend><bdo id='CDACo'><pre id='CDACo'><center id='CDACo'></center></pre></bdo></b><th id='CDACo'></th></span></q></dt></tr></i><div id='CDACo'><tfoot id='CDACo'></tfoot><dl id='CDACo'><fieldset id='CDACo'></fieldset></dl></div>
                    <bdo id='CDACo'></bdo><ul id='CDACo'></ul>

                      <tbody id='CDACo'></tbody>

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