改进Model类save方法对oracle的支持

This commit is contained in:
thinkphp
2017-11-16 14:18:00 +08:00
parent 941279bc0b
commit 21c1dc40e8

View File

@@ -1103,9 +1103,9 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
// 检测字段
$allowFields = $this->checkAllowField(array_merge($this->auto, $this->insert));
if (!empty($allowFields)) {
$result = $this->getQuery()->strict(false)->field($allowFields)->insert($this->data);
$result = $this->getQuery()->strict(false)->field($allowFields)->insert($this->data, false, false, $sequence);
} else {
$result = $this->getQuery()->insert($this->data);
$result = $this->getQuery()->insert($this->data, false, false, $sequence);
}
// 获取自动增长主键