Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| be3fc004d5 | |||
| bbe0631f5b | |||
| bf5d988ba4 | |||
| 4fc9b42540 | |||
| e5453807f2 | |||
| 5a6f6da70a | |||
| beb48f41d2 | |||
| 8d917b0f92 |
+43
-1
@@ -73,6 +73,48 @@ class ActiveQuery extends QueryTrait implements ISqlBuilder
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $column
|
||||
* @param int|float $amount
|
||||
* @return bool
|
||||
*/
|
||||
public function increment(string $column, int|float $amount = 1): bool
|
||||
{
|
||||
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount]))->exec();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param array $attributes
|
||||
* @return bool
|
||||
*/
|
||||
public function increments(array $attributes): bool
|
||||
{
|
||||
return (bool)$this->buildCommand($this->builder->mathematics($attributes))->exec();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $column
|
||||
* @param int|float $amount
|
||||
* @return bool
|
||||
*/
|
||||
public function decrement(string $column, int|float $amount = 1): bool
|
||||
{
|
||||
return (bool)$this->buildCommand($this->builder->mathematics([$column => $amount], '-'))->exec();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param array $attributes
|
||||
* @return bool
|
||||
*/
|
||||
public function decrements(array $attributes): bool
|
||||
{
|
||||
return (bool)$this->buildCommand($this->builder->mathematics($attributes, '-'))->exec();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @throws
|
||||
*/
|
||||
@@ -95,7 +137,7 @@ class ActiveQuery extends QueryTrait implements ISqlBuilder
|
||||
return;
|
||||
}
|
||||
if (Context::inCoroutine()) {
|
||||
Coroutine::create(fn() => $closure($data));
|
||||
Coroutine::create(fn () => $closure($data));
|
||||
} else {
|
||||
call_user_func($closure, $data);
|
||||
}
|
||||
|
||||
+15
-9
@@ -1,4 +1,5 @@
|
||||
<?php /** @noinspection ALL */
|
||||
<?php
|
||||
/** @noinspection ALL */
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: whwyy
|
||||
@@ -222,8 +223,8 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
||||
*/
|
||||
public function getPrimaryValue(): ?int
|
||||
{
|
||||
if ($this->hasPrimary()) {
|
||||
return (int)$this->_oldAttributes[$this->getPrimary()] ?? null;
|
||||
if ($this->hasPrimary() && isset($this->_oldAttributes[$this->getPrimary()])) {
|
||||
return (int)$this->_oldAttributes[$this->getPrimary()];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
@@ -234,13 +235,14 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
||||
* @return Model|null
|
||||
* @throws
|
||||
*/
|
||||
public static function findOne(int|string|array $param): ?static
|
||||
public static function findOne(int|string|array|null $param): ?static
|
||||
{
|
||||
if (empty($param)) return null;
|
||||
$model = static::instance();
|
||||
$query = new ActiveQuery($model);
|
||||
$query->from($model->getTable())->alias('t1');
|
||||
if (is_numeric($param)) {
|
||||
$query->where([$model->getPrimary() => $param]);
|
||||
$query->where([$model->getPrimary() => +$param]);
|
||||
} else if (is_array($param)) {
|
||||
$query->where($param);
|
||||
} else {
|
||||
@@ -440,10 +442,13 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
||||
if ($lastId === false) {
|
||||
return false;
|
||||
}
|
||||
if ($this->hasPrimary()) {
|
||||
$this->_attributes[$this->getPrimary()] = $lastId;
|
||||
if (!$this->hasPrimary()) {
|
||||
return $this->refresh()->afterSave($this->_attributes, []);
|
||||
}
|
||||
return $this;
|
||||
|
||||
$this->_attributes[$this->getPrimary()] = $lastId;
|
||||
|
||||
return $this->refresh()->afterSave($this->_attributes, [$this->getPrimary() => $lastId]);
|
||||
}
|
||||
|
||||
|
||||
@@ -464,7 +469,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
||||
if ($generate === false) {
|
||||
return false;
|
||||
}
|
||||
if (!$this->getConnection()->createCommand($generate, $query->params)->save()) {
|
||||
if (!$this->getConnection()->createCommand($generate, $query->params)->exec()) {
|
||||
return FALSE;
|
||||
}
|
||||
return $this->refresh()->afterSave($old, $change);
|
||||
@@ -653,6 +658,7 @@ abstract class Model extends Component implements ModelInterface, ArrayAccess, \
|
||||
public function refresh(): static
|
||||
{
|
||||
$this->_oldAttributes = $this->_attributes;
|
||||
$this->isNewExample = false;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
||||
+4
-11
@@ -47,15 +47,6 @@ class Command extends Component
|
||||
return (bool)$this->_prepare();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return bool
|
||||
* @throws
|
||||
*/
|
||||
public function save(): bool
|
||||
{
|
||||
return (bool)$this->_prepare();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return bool|array
|
||||
@@ -118,6 +109,7 @@ class Command extends Component
|
||||
{
|
||||
$client = $this->connection->getConnection();
|
||||
try {
|
||||
$startTime = microtime(true);
|
||||
if (($prepare = $client->prepare($this->sql)) === false) {
|
||||
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $client->errorInfo()[2]);
|
||||
}
|
||||
@@ -127,7 +119,7 @@ class Command extends Component
|
||||
$result = $method == 'rowCount' ? $prepare->rowCount() : $prepare->{$method}(PDO::FETCH_ASSOC);
|
||||
$prepare->closeCursor();
|
||||
|
||||
$this->connection->println($this->sql, $this->params);
|
||||
$this->connection->println($startTime, microtime(true), $this->sql, $this->params);
|
||||
|
||||
return $result;
|
||||
} catch (Throwable $throwable) {
|
||||
@@ -160,6 +152,7 @@ class Command extends Component
|
||||
{
|
||||
$client = $this->connection->getConnection();
|
||||
try {
|
||||
$startTime = microtime(true);
|
||||
if (($prepare = $client->prepare($this->sql)) === false) {
|
||||
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $prepare->errorInfo()[2]);
|
||||
}
|
||||
@@ -170,7 +163,7 @@ class Command extends Component
|
||||
|
||||
$result = $client->lastInsertId();
|
||||
|
||||
$this->connection->println($this->sql, $this->params);
|
||||
$this->connection->println($startTime, microtime(true), $this->sql, $this->params);
|
||||
|
||||
return $result == 0 ? $prepare->rowCount() : (int)$result;
|
||||
} catch (Throwable $throwable) {
|
||||
|
||||
+12
-10
@@ -79,14 +79,16 @@ class Connection extends Component
|
||||
|
||||
|
||||
/**
|
||||
* @param float $startTime
|
||||
* @param float $endTime
|
||||
* @param string $sql
|
||||
* @param array $params
|
||||
* @return void
|
||||
*/
|
||||
public function println(string $sql, array $params = []): void
|
||||
public function println(float $startTime, float $endTime, string $sql, array $params = []): void
|
||||
{
|
||||
if (is_callable($this->_println)) {
|
||||
call_user_func($this->_println, $sql, $params);
|
||||
call_user_func($this->_println, $startTime, $endTime, $sql, $params);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -113,7 +115,7 @@ class Connection extends Component
|
||||
*/
|
||||
public function tick(): void
|
||||
{
|
||||
$this->timerId = Timer::tick($this->tick_time, fn() => $this->checkClientHealth($this->pool()));
|
||||
$this->timerId = Timer::tick($this->tick_time, fn () => $this->checkClientHealth($this->pool()));
|
||||
}
|
||||
|
||||
|
||||
@@ -349,13 +351,13 @@ class Connection extends Component
|
||||
{
|
||||
$pdo = new PDO($this->database, $this->cds, $this->username, $this->password, [
|
||||
// $pdo = new \PDO('mysql:dbname=' . $this->database . ';host=' . $this->cds, $this->username, $this->password, [
|
||||
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
||||
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
||||
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
||||
\PDO::ATTR_STRINGIFY_FETCHES => false,
|
||||
\PDO::ATTR_EMULATE_PREPARES => true,
|
||||
\PDO::ATTR_TIMEOUT => $this->timeout,
|
||||
\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->charset
|
||||
\PDO::ATTR_CASE => \PDO::CASE_NATURAL,
|
||||
\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION,
|
||||
\PDO::ATTR_ORACLE_NULLS => \PDO::NULL_NATURAL,
|
||||
\PDO::ATTR_STRINGIFY_FETCHES => false,
|
||||
\PDO::ATTR_EMULATE_PREPARES => true,
|
||||
\PDO::ATTR_TIMEOUT => $this->timeout,
|
||||
\PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES ' . $this->charset
|
||||
]);
|
||||
foreach ($this->attributes as $key => $attribute) {
|
||||
$pdo->setAttribute($key, $attribute);
|
||||
|
||||
+2
-2
@@ -18,10 +18,10 @@ interface ModelInterface
|
||||
{
|
||||
|
||||
/**
|
||||
* @param array|string|int $param
|
||||
* @param array|string|int|null $param
|
||||
* @return ModelInterface|null
|
||||
*/
|
||||
public static function findOne(array|string|int $param): ?static;
|
||||
public static function findOne(array|string|int|null $param): ?static;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user