Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ DriverException
Show exception properties
Doctrine\DBAL\Exception\DriverException {#1738 -query: Doctrine\DBAL\Query {#1722 -sql: "INSERT INTO entity_change_logs (entity_class, entity_label, entity_id, action, changes, changed_by_name, changed_by_id, changed_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?)" -params: array:8 [ 1 => "App\Entity\WarehouseItem" 2 => "Lower part marine with welding sleeve 470.000.050 S" 3 => 2774 4 => "update" 5 => "{"position":{"old":null,"new":"C.4.1.1"}}" 6 => "magazynier" 7 => 3 8 => DateTimeImmutable @1786369194 {#1268 : 2026-08-10 15:39:54.759442 Europe/Warsaw (+02:00) } ] -types: array:8 [ 1 => "string" 2 => "string" 3 => "integer" 4 => "string" 5 => "text" 6 => "string" 7 => "integer" 8 => "datetime_immutable" ] } }
1171,1252,1263,1364,1566 => new NotNullConstraintViolationException($exception, $query),default => new DriverException($exception, $query),};}}
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1460)
private function handleDriverException(Driver\Exception $driverException,?Query $query,): DriverException {$this->exceptionConverter ??= $this->driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1396)
Driver\Exception $e,string $sql,array $params = [],array $types = [],): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/** @internal */final public function convertException(Driver\Exception $e): DriverException{
in
vendor/doctrine/dbal/src/Statement.php
->
convertExceptionDuringQuery
(line 108)
return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}}/*** Executes the statement with the currently bound parameters and return result.
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1061)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 404)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$log->setChangedById($userId);$em->persist($log);}$this->deletions = [];$em->flush();}private function createLog(object $entity,string $action,
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
postFlush
(line 63)
if (!isset($this->initialized[$eventName])) {$this->initializeListeners($eventName);}foreach ($this->listeners[$eventName] as $hash => $listener) {$listener->{$this->methods[$eventName][$hash]}($eventArgs);}}public function getListeners(string $event): array{
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchEvent
(line 3164)
}private function dispatchPostFlushEvent(): void{if ($this->evm->hasListeners(Events::postFlush)) {$this->evm->dispatchEvent(Events::postFlush, new PostFlushEventArgs($this->em));}}/*** Verifies if two given entities actually are the same based on identifier comparison
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchPostFlushEvent
(line 472)
}$coll->takeSnapshot();}$this->dispatchPostFlushEvent();$this->postCommitCleanup();}private function postCommitCleanup(): void
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
->setQuantity((string)$qty)->setQuantityAfter($item->getQuantity())->setCreatedByName($u->getFullName());$em->persist($mov);$em->flush();return new JsonResponse(['success' => true,'srcPosition' => $srcPosition,'destPosition' => $destPosition,
in
vendor/symfony/http-kernel/HttpKernel.php
->
moveExecute
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 24)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
::
new
(line 57)
public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1061)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 404)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$log->setChangedById($userId);$em->persist($log);}$this->deletions = [];$em->flush();}private function createLog(object $entity,string $action,
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
postFlush
(line 63)
if (!isset($this->initialized[$eventName])) {$this->initializeListeners($eventName);}foreach ($this->listeners[$eventName] as $hash => $listener) {$listener->{$this->methods[$eventName][$hash]}($eventArgs);}}public function getListeners(string $event): array{
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchEvent
(line 3164)
}private function dispatchPostFlushEvent(): void{if ($this->evm->hasListeners(Events::postFlush)) {$this->evm->dispatchEvent(Events::postFlush, new PostFlushEventArgs($this->em));}}/*** Verifies if two given entities actually are the same based on identifier comparison
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchPostFlushEvent
(line 472)
}$coll->takeSnapshot();}$this->dispatchPostFlushEvent();$this->postCommitCleanup();}private function postCommitCleanup(): void
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
->setQuantity((string)$qty)->setQuantityAfter($item->getQuantity())->setCreatedByName($u->getFullName());$em->persist($mov);$em->flush();return new JsonResponse(['success' => true,'srcPosition' => $srcPosition,'destPosition' => $destPosition,
in
vendor/symfony/http-kernel/HttpKernel.php
->
moveExecute
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 55)
}public function execute(): Result{try {$this->stmt->execute();} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 46)
'sql' => $this->sql,'params' => $this->params,'types' => $this->types,]);return parent::execute();}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 24)
$this->wrappedStatement->bindValue($param, $value, $type);}public function execute(): Result{return $this->wrappedStatement->execute();}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
->
execute
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute();} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 104)
/** @throws Exception */private function execute(): Result{try {return new Result($this->stmt->execute(),$this->conn,);} catch (Driver\Exception $ex) {throw $this->conn->convertExceptionDuringQuery($ex, $this->sql, $this->params, $this->types);}
in
vendor/doctrine/dbal/src/Statement.php
->
execute
(line 133)
** @throws Exception*/public function executeStatement(): int|string{return $this->execute()->rowCount();}/*** Gets the wrapped driver statement.*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeStatement
(line 253)
foreach ($insertData[$tableName] as $column => $value) {$stmt->bindValue($paramIndex++, $value, $this->columnTypes[$column]);}}$stmt->executeStatement();if ($isPostInsertId) {$generatedId = $idGenerator->generateId($this->em, $entity);$id = [$this->class->identifier[0] => $generatedId];
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 1061)
$persister->addInsert($entity);unset($this->entityInsertions[$oid]);}$persister->executeInserts();foreach ($batch->entities as $entity) {$oid = spl_object_id($entity);if (! isset($this->entityIdentifiers[$oid])) {
in
vendor/doctrine/orm/src/UnitOfWork.php
->
executeInserts
(line 404)
// Perform entity insertions first, so that all new entities have their rows in the database// and can be referred to by foreign keys. The commit order only needs to take new entities// into account (new entities referring to other new entities), since all other types (entities// with updates or scheduled deletions) are currently not a problem, since they are already// in the database.$this->executeInserts();}if ($this->entityUpdates) {// Updates do not need to follow a particular order$this->executeUpdates();
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
$log->setChangedById($userId);$em->persist($log);}$this->deletions = [];$em->flush();}private function createLog(object $entity,string $action,
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
postFlush
(line 63)
if (!isset($this->initialized[$eventName])) {$this->initializeListeners($eventName);}foreach ($this->listeners[$eventName] as $hash => $listener) {$listener->{$this->methods[$eventName][$hash]}($eventArgs);}}public function getListeners(string $event): array{
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchEvent
(line 3164)
}private function dispatchPostFlushEvent(): void{if ($this->evm->hasListeners(Events::postFlush)) {$this->evm->dispatchEvent(Events::postFlush, new PostFlushEventArgs($this->em));}}/*** Verifies if two given entities actually are the same based on identifier comparison
in
vendor/doctrine/orm/src/UnitOfWork.php
->
dispatchPostFlushEvent
(line 472)
}$coll->takeSnapshot();}$this->dispatchPostFlushEvent();$this->postCommitCleanup();}private function postCommitCleanup(): void
in
vendor/doctrine/orm/src/EntityManager.php
->
commit
(line 268)
* @throws ORMException*/public function flush(): void{$this->errorIfClosed();$this->unitOfWork->commit();}/*** {@inheritDoc}*/
->setQuantity((string)$qty)->setQuantityAfter($item->getQuantity())->setCreatedByName($u->getFullName());$em->persist($mov);$em->flush();return new JsonResponse(['success' => true,'srcPosition' => $srcPosition,'destPosition' => $destPosition,
in
vendor/symfony/http-kernel/HttpKernel.php
->
moveExecute
(line 183)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 182)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 17:58:21 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d75313"
},
"request_uri": "https://www.westmar.intgate.io/_profiler/d75313?panel=exception&type=request",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
DriverException
|
|---|
Doctrine\DBAL\Exception\DriverException:
An exception occurred while executing a query: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'entity_label' at row 1
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:102
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
(vendor/doctrine/dbal/src/Statement.php:108)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1061)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:404)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/EventSubscriber/EntityChangeLogSubscriber.php:172)
at App\EventSubscriber\EntityChangeLogSubscriber->postFlush()
(vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:63)
at Symfony\Bridge\Doctrine\ContainerAwareEventManager->dispatchEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:3164)
at Doctrine\ORM\UnitOfWork->dispatchPostFlushEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:472)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/MobileController.php:1057)
at App\Controller\MobileController->moveExecute()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/home/westmar/public_html/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'entity_label' at row 1
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:57)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1061)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:404)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/EventSubscriber/EntityChangeLogSubscriber.php:172)
at App\EventSubscriber\EntityChangeLogSubscriber->postFlush()
(vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:63)
at Symfony\Bridge\Doctrine\ContainerAwareEventManager->dispatchEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:3164)
at Doctrine\ORM\UnitOfWork->dispatchPostFlushEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:472)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/MobileController.php:1057)
at App\Controller\MobileController->moveExecute()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/home/westmar/public_html/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'entity_label' at row 1
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:55)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:46)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php:58)
at Symfony\Bridge\Doctrine\Middleware\Debug\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:104)
at Doctrine\DBAL\Statement->execute()
(vendor/doctrine/dbal/src/Statement.php:133)
at Doctrine\DBAL\Statement->executeStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:253)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:1061)
at Doctrine\ORM\UnitOfWork->executeInserts()
(vendor/doctrine/orm/src/UnitOfWork.php:404)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/EventSubscriber/EntityChangeLogSubscriber.php:172)
at App\EventSubscriber\EntityChangeLogSubscriber->postFlush()
(vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:63)
at Symfony\Bridge\Doctrine\ContainerAwareEventManager->dispatchEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:3164)
at Doctrine\ORM\UnitOfWork->dispatchPostFlushEvent()
(vendor/doctrine/orm/src/UnitOfWork.php:472)
at Doctrine\ORM\UnitOfWork->commit()
(vendor/doctrine/orm/src/EntityManager.php:268)
at Doctrine\ORM\EntityManager->flush()
(src/Controller/MobileController.php:1057)
at App\Controller\MobileController->moveExecute()
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:182)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/home/westmar/public_html/vendor/autoload_runtime.php')
(public/index.php:5)
|