소스 검색

Fixed: insertObject返回ID问题修复

Jinhui Zhu 5 년 전
부모
커밋
b13ae2d6fb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Driver/Base.php

+ 1 - 1
src/Driver/Base.php

@@ -155,7 +155,7 @@ class Base
         $this->modelSQL = $sql = "INSERT INTO " . $this->getTable($table) . "(`" . join("`, `", $replaceObj['fields']) . "`) VALUES('" . join("', '", $replaceObj['values']) . "')";
         $rs = $this->setQuery($sql);
         $this->setError();
-        return $this->AffectedRows($rs);
+        return $this->lastInsertId();
     }
     /**
      *