Compare commits

...

11 Commits

Author SHA1 Message Date
as2252258 199312d326 eee 2024-04-26 15:39:13 +08:00
as2252258 87f568bdfe eee 2024-04-26 15:36:55 +08:00
as2252258 2fd37f90a3 eee 2024-04-26 15:28:40 +08:00
as2252258 c100190155 eee 2024-04-26 15:27:11 +08:00
as2252258 71766ee914 eee 2024-04-26 15:26:10 +08:00
as2252258 3a39eaabf4 eee 2024-04-26 15:25:12 +08:00
as2252258 722b286f91 eee 2024-04-26 15:23:37 +08:00
as2252258 f9ee3aa014 eee 2024-04-26 15:22:16 +08:00
as2252258 4341efcb8c eee 2024-04-26 15:20:22 +08:00
as2252258 8acf74c9ed eee 2024-04-26 15:15:36 +08:00
as2252258 b9750d743b eee 2024-04-26 15:12:31 +08:00
4 changed files with 30 additions and 41 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ class ActiveQuery extends QueryTrait implements ISqlBuilder
*/ */
public function exists(): bool public function exists(): bool
{ {
return $this->buildCommand($this->builder->one())->rowCount() > 0; return $this->buildCommand($this->limit(1)->builder->exists())->exists();
} }
+16 -38
View File
@@ -75,6 +75,19 @@ class Command extends Component
return $this->search('fetch'); return $this->search('fetch');
} }
/**
* @return bool
* @throws Exception
*/
public function exists(): bool
{
$data = $this->search('fetch');
if (!$data) {
return false;
}
return true;
}
/** /**
* @return mixed * @return mixed
* @throws * @throws
@@ -88,46 +101,11 @@ class Command extends Component
* @return mixed * @return mixed
* @throws * @throws
*/ */
public function rowCount(): mixed public function rowCount(): int
{ {
$client = $this->connection->getConnection(); $data = $this->search('fetch');
try {
$client->setAttribute(PDO::MYSQL_ATTR_USE_BUFFERED_QUERY, true);
if (($prepare = $client->query($this->sql)) === false) {
throw new Exception('(' . $prepare->errorInfo()[0] . ')' . $client->errorInfo()[2]);
}
$prepare->execute($this->params); return !$data ? 0 : +current($data);
$count = $prepare->rowCount();
$prepare->closeCursor();
$this->connection->println($this->sql, $this->params);
return $count;
} catch (Throwable $throwable) {
if ($this->isRefresh($throwable)) return $this->rowCount();
$errorMsg = $throwable->getMessage() . PHP_EOL . ' Sql: ' . $this->sql . '.' . json_encode($this->params);
$this->getLogger()->failure($errorMsg . PHP_EOL, 'mysql');
return 0;
} finally {
$this->connection->release($client);
}
}
/**
* @return bool
* @throws Exception
*/
public function exists(): bool
{
$total = $this->search('rowCount');
if ($total === false) {
throw new Exception('Query data is has error.');
}
return $total > 0;
} }
+2 -1
View File
@@ -115,10 +115,11 @@ class Db extends QueryTrait implements ISqlBuilder
/** /**
* @return bool * @return bool
* @throws Exception
*/ */
public function exists(): bool public function exists(): bool
{ {
return $this->connection->createCommand(SqlBuilder::builder($this)->one())->rowCount() > 0; return $this->connection->createCommand(SqlBuilder::builder($this->limit(1))->exists())->exists();
} }
/** /**
+11 -1
View File
@@ -235,7 +235,17 @@ class SqlBuilder extends Component
*/ */
public function count(): string public function count(): string
{ {
return $this->makeSelect() . $this->make(); return $this->makeSelect(['COUNT(*)']) . $this->make();
}
/**
* @return string
* @throws
*/
public function exists(): string
{
return $this->makeSelect(['0']) . $this->make();
} }