<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.

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

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

                相关文档推荐

                When should use doctrine ORM and when zend-db-table?(什么时候应该使用学说 ORM,什么时候应该使用 zend-db-table?)
                Doctrine - self-referencing entity - disable fetching of children(Doctrine - 自引用实体 - 禁用获取子项)
                Doctrine 2, query inside entities(原则 2,实体内部查询)
                Complex WHERE clauses using the PHP Doctrine ORM(使用 PHP Doctrine ORM 的复杂 WHERE 子句)
                Doctrine - OneToMany relation, all result row doesn#39;t fetch in object(Doctrine - OneToMany 关系,所有结果行不获取对象)
                Doctrine and unrefreshed relationships(教义和未更新的关系)
                <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'>