Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6936b5cc8f | |||
| f50782c930 | |||
| 731af328d7 | |||
| 5756573d8d | |||
| eb75e69d60 | |||
| 6745036672 | |||
| 3e75bdc089 | |||
| 70f3714b15 | |||
| d7f982b44f | |||
| 368a102409 | |||
| 1f42c353b9 | |||
| 50f6deeae7 | |||
| 68dbaba012 | |||
| cb83878684 | |||
| 1b4c7ea957 | |||
| a58b5217a8 | |||
| f4084b0b06 | |||
| 2f4e6b23e0 | |||
| c13d4101b9 | |||
| 07a40f4449 | |||
| 229c0fa523 | |||
| 8c3d3b2ce0 | |||
| 8b164c7611 | |||
| 8e9047de8a | |||
| ec8f0849ee | |||
| 3038c332c0 | |||
| 98e8abfb7c | |||
| d3bb5e851f | |||
| d60799d5a4 | |||
| 0c32559716 | |||
| ea4f7ba11a | |||
| a167169207 | |||
| b5f347b07a | |||
| a113d5f64b | |||
| c3dbaa8828 | |||
| b0dea25640 | |||
| 6dbc18c7d9 | |||
| f22a58e121 | |||
| d45725603d | |||
| f49d7cfa4b | |||
| e5a723cdb2 | |||
| d56b28a4aa | |||
| b3d1f64241 | |||
| 6b78d130fb | |||
| ee44cfbca9 | |||
| 3d588f3f33 | |||
| d903bba60f | |||
| 2f3be8cabc | |||
| fcfc2213c2 | |||
| f76755407c | |||
| 2f64375ca2 | |||
| 606cf7a722 | |||
| 7400b27cb9 |
@@ -4,7 +4,10 @@ namespace PHPSTORM_META {
|
|||||||
|
|
||||||
// Reflect
|
// Reflect
|
||||||
use Kiri\Di\Container;
|
use Kiri\Di\Container;
|
||||||
|
use Psr\Container\ContainerInterface;
|
||||||
|
|
||||||
|
override(ContainerInterface::get(0), map('@'));
|
||||||
|
override(Container::make(0), map('@'));
|
||||||
override(Container::get(0), map('@'));
|
override(Container::get(0), map('@'));
|
||||||
override(Container::create(0), map('@'));
|
override(Container::create(0), map('@'));
|
||||||
// override(\Hyperf\Utils\Context::get(0), map('@'));
|
// override(\Hyperf\Utils\Context::get(0), map('@'));
|
||||||
|
|||||||
+3
-3
@@ -269,7 +269,7 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
[$sql, $params] = $this->builder->insert($data, true);
|
[$sql, $params] = $this->builder->insert($data, true);
|
||||||
|
|
||||||
|
|
||||||
return $this->execute($sql, $params)->exec(null, true);
|
return $this->execute($sql, $params)->exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -295,10 +295,10 @@ class ActiveQuery extends Component implements ISqlBuilder
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param bool $getSql
|
* @param bool $getSql
|
||||||
* @return string|bool
|
* @return int|bool|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function delete(bool $getSql = false): string|bool
|
public function delete(bool $getSql = false): int|bool|string|null
|
||||||
{
|
{
|
||||||
$sql = $this->builder->delete();
|
$sql = $this->builder->delete();
|
||||||
if ($getSql === false) {
|
if ($getSql === false) {
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ abstract class AbstractCollection extends Component implements \IteratorAggregat
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (!($this->_item[$offset] instanceof ModelInterface)) {
|
if (!($this->_item[$offset] instanceof ModelInterface)) {
|
||||||
return $this->model->setAttributes($this->_item[$offset]);
|
return $this->model->populates($this->_item[$offset]);
|
||||||
}
|
}
|
||||||
return $this->_item[$offset];
|
return $this->_item[$offset];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ class CollectionIterator extends \ArrayIterator
|
|||||||
*/
|
*/
|
||||||
protected function newModel($current): ModelInterface
|
protected function newModel($current): ModelInterface
|
||||||
{
|
{
|
||||||
return $this->model->setAttributes($current);
|
return $this->model->populates($current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+40
-24
@@ -123,14 +123,15 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
/**
|
/**
|
||||||
* @param string $name
|
* @param string $name
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
private function _setter(string $name, mixed $value): void
|
private function _setter(string $name, mixed $value): mixed
|
||||||
{
|
{
|
||||||
$method = di(Setter::class)->getSetter(static::class, $name);
|
$method = di(Setter::class)->getSetter(static::class, $name);
|
||||||
if (!empty($method)) {
|
if (!empty($method)) {
|
||||||
$value = $this->{$method}($value);
|
$value = $this->{$method}($value);
|
||||||
}
|
}
|
||||||
$this->_attributes[$name] = $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -220,7 +221,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function init()
|
public function init()
|
||||||
{
|
{
|
||||||
$an = Kiri::app()->getAnnotation();
|
$an = Kiri::app()->getNote();
|
||||||
$an->injectProperty($this);
|
$an->injectProperty($this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -454,13 +455,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (!$if_condition_is_null) {
|
if (!$if_condition_is_null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return static::query()->delete();
|
return (bool)static::query()->delete();
|
||||||
}
|
}
|
||||||
$model = static::query()->ifNotWhere($if_condition_is_null)->where($condition);
|
$model = static::query()->ifNotWhere($if_condition_is_null)->where($condition);
|
||||||
if (!empty($attributes)) {
|
if (!empty($attributes)) {
|
||||||
$model->bindParams($attributes);
|
$model->bindParams($attributes);
|
||||||
}
|
}
|
||||||
return $model->delete();
|
return (bool)$model->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -488,7 +489,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function setAttribute($name, $value): mixed
|
public function setAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
return $this->_attributes[$name] = $value;
|
return $this->_attributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -498,7 +499,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function setOldAttribute($name, $value): mixed
|
public function setOldAttribute($name, $value): mixed
|
||||||
{
|
{
|
||||||
return $this->_oldAttributes[$name] = $value;
|
return $this->_oldAttributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -511,7 +512,9 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($param)) {
|
if (empty($param)) {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
$this->_attributes = array_merge($this->_attributes, $param);
|
foreach ($param as $key => $attribute) {
|
||||||
|
$this->setAttribute($key, $attribute);
|
||||||
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -524,8 +527,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($param) || !is_array($param)) {
|
if (empty($param) || !is_array($param)) {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
foreach ($param as $key => $val) {
|
foreach ($param as $key => $attribute) {
|
||||||
$this->setOldAttribute($key, $val);
|
$this->setOldAttribute($key, $attribute);
|
||||||
}
|
}
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
@@ -540,10 +543,10 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
{
|
{
|
||||||
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
[$sql, $param] = SqlBuilder::builder(static::query())->insert($param);
|
||||||
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
$dbConnection = $this->getConnection()->createCommand($sql, $param);
|
||||||
if (!($lastId = (int)$dbConnection->save(true, $this))) {
|
|
||||||
throw new Exception('保存失败.');
|
$lastId = $dbConnection->save(true);
|
||||||
}
|
|
||||||
$lastId = $this->setPrimary($lastId, $param);
|
$lastId = $this->setPrimary((int)$lastId, $param);
|
||||||
|
|
||||||
$this->refresh()->afterSave($attributes, $param);
|
$this->refresh()->afterSave($attributes, $param);
|
||||||
|
|
||||||
@@ -572,7 +575,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (!isset($param[$primary]) || empty($param[$primary])) {
|
if (!isset($param[$primary]) || empty($param[$primary])) {
|
||||||
$this->setAttribute($primary, (int)$lastId);
|
$this->setAttribute($primary, (int)$lastId);
|
||||||
}
|
}
|
||||||
return $this->setAttributes($param);
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -623,6 +626,19 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param $value
|
||||||
|
* @return $this
|
||||||
|
*/
|
||||||
|
public function populates($value): static
|
||||||
|
{
|
||||||
|
$this->_attributes = $value;
|
||||||
|
$this->_oldAttributes = $value;
|
||||||
|
$this->setIsCreate(FALSE);
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array|null $rule
|
* @param array|null $rule
|
||||||
* @return bool
|
* @return bool
|
||||||
@@ -633,7 +649,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (empty($rule)) return true;
|
if (empty($rule)) return true;
|
||||||
$validate = $this->resolve($rule);
|
$validate = $this->resolve($rule);
|
||||||
if (!$validate->validation()) {
|
if (!$validate->validation()) {
|
||||||
return $this->addError($validate->getError(), 'mysql');
|
return $this->addError('$validate->getError()', 'mysql');
|
||||||
} else {
|
} else {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
@@ -666,8 +682,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
*/
|
*/
|
||||||
public function getAttribute(string $name)
|
public function getAttribute(string $name)
|
||||||
{
|
{
|
||||||
if ($this->hasAnnotation($name)) {
|
if ($this->hasNote($name)) {
|
||||||
return $this->runAnnotation($name, $this->_attributes[$name]);
|
return $this->runNote($name, $this->_attributes[$name]);
|
||||||
}
|
}
|
||||||
return $this->_attributes[$name] ?? null;
|
return $this->_attributes[$name] ?? null;
|
||||||
}
|
}
|
||||||
@@ -679,7 +695,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
protected function runAnnotation(string $name, mixed $value, string $type = self::GET): mixed
|
protected function runNote(string $name, mixed $value, string $type = self::GET): mixed
|
||||||
{
|
{
|
||||||
return call_user_func($this->_annotations[$type][$name], $value);
|
return call_user_func($this->_annotations[$type][$name], $value);
|
||||||
}
|
}
|
||||||
@@ -806,8 +822,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
throw new Exception('You need add static method `tableName` and return table name.');
|
throw new Exception('You need add static method `tableName` and return table name.');
|
||||||
}
|
}
|
||||||
$table = trim($this->table, '{{%}}');
|
$table = trim($this->table, '{{%}}');
|
||||||
if (!empty($tablePrefix) && !str_starts_with($this->table, $tablePrefix)) {
|
if (!empty($tablePrefix) && !str_starts_with($table, $tablePrefix)) {
|
||||||
$table = $tablePrefix . $this->table;
|
$table = $tablePrefix . $table;
|
||||||
}
|
}
|
||||||
return '`' . $connection->database . '`.' . $table;
|
return '`' . $connection->database . '`.' . $table;
|
||||||
}
|
}
|
||||||
@@ -854,7 +870,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
if (method_exists($this, 'set' . ucfirst($name))) {
|
if (method_exists($this, 'set' . ucfirst($name))) {
|
||||||
$this->{'set' . ucfirst($name)}($value);
|
$this->{'set' . ucfirst($name)}($value);
|
||||||
} else {
|
} else {
|
||||||
$this->_setter($name, $value);
|
$this->_attributes[$name] = $this->_setter($name, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -906,7 +922,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function getAnnotation(string $type = self::GET): array
|
protected function getNote(string $type = self::GET): array
|
||||||
{
|
{
|
||||||
return $this->_annotations[$type] ?? [];
|
return $this->_annotations[$type] ?? [];
|
||||||
}
|
}
|
||||||
@@ -917,7 +933,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, T
|
|||||||
* @param string $type
|
* @param string $type
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
protected function hasAnnotation($name, string $type = self::GET): bool
|
protected function hasNote($name, string $type = self::GET): bool
|
||||||
{
|
{
|
||||||
if (!isset($this->_annotations[$type])) {
|
if (!isset($this->_annotations[$type])) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
+5
-25
@@ -60,7 +60,7 @@ class Command extends Component
|
|||||||
*/
|
*/
|
||||||
public function save(bool $isInsert = TRUE, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
public function save(bool $isInsert = TRUE, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
return $this->execute(static::EXECUTE, $isInsert, $hasAutoIncrement);
|
return $this->execute(static::EXECUTE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -111,17 +111,15 @@ class Command extends Component
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $type
|
* @param $type
|
||||||
* @param null $isInsert
|
|
||||||
* @param bool|null $hasAutoIncrement
|
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
private function execute($type, $isInsert = null, mixed $hasAutoIncrement = null): int|bool|array|string|null
|
private function execute($type): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$time = microtime(true);
|
$time = microtime(true);
|
||||||
if ($type === static::EXECUTE) {
|
if ($type === static::EXECUTE) {
|
||||||
$result = $this->insert_or_change($isInsert, $hasAutoIncrement);
|
$result = $this->db->getConnect($this->sql)->execute($this->sql,$this->params);
|
||||||
} else {
|
} else {
|
||||||
$result = $this->search($type);
|
$result = $this->search($type);
|
||||||
}
|
}
|
||||||
@@ -158,22 +156,6 @@ class Command extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $isInsert
|
|
||||||
* @param $hasAutoIncrement
|
|
||||||
* @return bool|int
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
private function insert_or_change($isInsert, $hasAutoIncrement): bool|int
|
|
||||||
{
|
|
||||||
$pdo = $this->db->getConnect($this->sql);
|
|
||||||
$result = $pdo->execute($this->sql, $isInsert, $this->params);
|
|
||||||
if ($hasAutoIncrement && $result == 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
@@ -184,14 +166,12 @@ class Command extends Component
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param null $scope
|
|
||||||
* @param bool $insert
|
|
||||||
* @return int|bool|array|string|null
|
* @return int|bool|array|string|null
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function exec($scope = null, bool $insert = false): int|bool|array|string|null
|
public function exec(): int|bool|array|string|null
|
||||||
{
|
{
|
||||||
return $this->execute(static::EXECUTE, $insert, $scope);
|
return $this->execute(static::EXECUTE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+1
-1
@@ -11,7 +11,7 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Inject;
|
use Note\Inject;
|
||||||
use Database\Affair\BeginTransaction;
|
use Database\Affair\BeginTransaction;
|
||||||
use Database\Affair\Commit;
|
use Database\Affair\Commit;
|
||||||
use Database\Affair\Rollback;
|
use Database\Affair\Rollback;
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ declare(strict_types=1);
|
|||||||
namespace Database;
|
namespace Database;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Inject;
|
use Note\Inject;
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Abstracts\Config;
|
use Kiri\Abstracts\Config;
|
||||||
use Kiri\Abstracts\Providers;
|
use Kiri\Abstracts\Providers;
|
||||||
|
|||||||
@@ -33,9 +33,10 @@ interface ModelInterface
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @param array $data
|
||||||
|
* @return static
|
||||||
*/
|
*/
|
||||||
public static function className(): string;
|
public static function populate(array $data): static;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+9
-11
@@ -3,8 +3,8 @@
|
|||||||
namespace Database\Mysql;
|
namespace Database\Mysql;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Kiri\Context;
|
|
||||||
use Kiri\Abstracts\Logger;
|
use Kiri\Abstracts\Logger;
|
||||||
|
use Kiri\Context;
|
||||||
use Kiri\Kiri;
|
use Kiri\Kiri;
|
||||||
use Kiri\Pool\StopHeartbeatCheck;
|
use Kiri\Pool\StopHeartbeatCheck;
|
||||||
use PDOStatement;
|
use PDOStatement;
|
||||||
@@ -212,14 +212,12 @@ class PDO implements StopHeartbeatCheck
|
|||||||
throw new Exception($this->_pdo()->errorInfo()[1]);
|
throw new Exception($this->_pdo()->errorInfo()[1]);
|
||||||
}
|
}
|
||||||
return $this->bindValue($statement, $params);
|
return $this->bindValue($statement, $params);
|
||||||
} catch (\Throwable $throwable) {
|
} catch (\PDOException | \Throwable $throwable) {
|
||||||
|
|
||||||
if (str_contains($throwable->getMessage(), 'MySQL server has gone away')) {
|
if (str_contains($throwable->getMessage(), 'MySQL server has gone away')) {
|
||||||
$this->pdo = null;
|
$this->pdo = null;
|
||||||
|
|
||||||
return $this->queryPrev($sql, $params);
|
return $this->queryPrev($sql, $params);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($throwable->getMessage());
|
throw new Exception($throwable->getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -242,25 +240,25 @@ class PDO implements StopHeartbeatCheck
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $sql
|
* @param string $sql
|
||||||
* @param $isInsert
|
|
||||||
* @param array $params
|
* @param array $params
|
||||||
* @return int
|
* @return int
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function execute(string $sql, $isInsert, array $params = []): int
|
public function execute(string $sql, array $params = []): int
|
||||||
{
|
{
|
||||||
$this->_last = time();
|
$this->_last = time();
|
||||||
if (!(($prepare = $this->_pdo()->prepare($sql)) instanceof PDOStatement)) {
|
$pdo = $this->_pdo();
|
||||||
|
if (!(($prepare = $pdo->prepare($sql)) instanceof PDOStatement)) {
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
if ($prepare->execute($params) === false) {
|
if ($prepare->execute($params) === false) {
|
||||||
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
throw new Exception($prepare->errorInfo()[2] ?? static::DB_ERROR_MESSAGE);
|
||||||
}
|
}
|
||||||
$result = 1;
|
$result = (int)$pdo->lastInsertId();
|
||||||
if ($isInsert) {
|
|
||||||
$result = (int)$this->_pdo()->lastInsertId();
|
|
||||||
}
|
|
||||||
$prepare->closeCursor();
|
$prepare->closeCursor();
|
||||||
|
if ($result == 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Attribute;
|
use Attribute;
|
||||||
@@ -11,9 +11,9 @@ use Exception;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Get
|
* Class Get
|
||||||
* @package Annotation\Model
|
* @package Note\Model
|
||||||
*/
|
*/
|
||||||
#[Attribute(Attribute::TARGET_METHOD)] class Get extends \Annotation\Attribute
|
#[Attribute(Attribute::TARGET_METHOD)] class Get extends \Note\Attribute
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -1,17 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Note\Attribute;
|
||||||
use Database\Base\Relate;
|
use Database\Base\Relate;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Relation
|
* Class Relation
|
||||||
* @package Annotation\Model
|
* @package Note\Model
|
||||||
*/
|
*/
|
||||||
#[\Attribute(\Attribute::TARGET_METHOD)] class Relation extends Attribute
|
#[\Attribute(\Attribute::TARGET_METHOD)] class Relation extends Attribute
|
||||||
{
|
{
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Database\Annotation;
|
namespace Database\Note;
|
||||||
|
|
||||||
|
|
||||||
use Annotation\Attribute;
|
use Note\Attribute;
|
||||||
use Database\Base\Setter;
|
use Database\Base\Setter;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
@@ -194,7 +194,7 @@ trait Builder
|
|||||||
$class = $defaultConfig['class'];
|
$class = $defaultConfig['class'];
|
||||||
unset($defaultConfig['class']);
|
unset($defaultConfig['class']);
|
||||||
|
|
||||||
$builder = Kiri::getDi()->get($class, [], $defaultConfig);
|
$builder = Kiri::getDi()->make($class, [], $defaultConfig);
|
||||||
$builder->setValue($condition[2]);
|
$builder->setValue($condition[2]);
|
||||||
$builder->setColumn($condition[1]);
|
$builder->setColumn($condition[1]);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -522,7 +522,7 @@ trait QueryTrait
|
|||||||
$conditionArray = $this->sprintf($conditionArray, $value, $opera);
|
$conditionArray = $this->sprintf($conditionArray, $value, $opera);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->where = ['(' . implode(' AND ', $this->where) . ') OR (' . $conditionArray . ')'];
|
$this->where = ['((' . implode(' AND ', $this->where) . ') OR (' . $conditionArray . '))'];
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user