Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
Show exception properties
Doctrine\DBAL\Exception\InvalidFieldNameException {#1941 -query: Doctrine\DBAL\Query {#1942 -sql: "SELECT t0.id AS id_1, t0.application_date AS application_date_2, t0.last_update_date AS last_update_date_3, t0.authorized_by_letter AS authorized_by_letter_4, t0.banner_authorization_date AS banner_authorization_date_5, t0.comments AS comments_6, t0.numbers_code AS numbers_code_7, t0.initials_code AS initials_code_8, t0.class_name AS class_name_9, t0.motivation_letter AS motivation_letter_10, t0.student_year AS student_year_11, t0.student_id AS student_id_12, t0.oportunity_research_id AS oportunity_research_id_13, t14.id AS id_15, t14.initials_code AS initials_code_16, t14.numbers_code AS numbers_code_17, t14.semester AS semester_18, t14.academic_year AS academic_year_19, t14.class_name AS class_name_20, t14.section AS section_21, t14.creation_date AS creation_date_22, t14.creation_date_op AS creation_date_op_23, t14.name_op AS name_op_24, t14.cmd AS cmd_25, t14.credits AS credits_26, t14.description_op AS description_op_27, t14.modality_op AS modality_op_28, t14.phd_names AS phd_names_29, t14.nrc AS nrc_30, t14.alpha_score AS alpha_score_31, t14.numeric_score AS numeric_score_32, t14.grade_confirmed AS grade_confirmed_33, t14.special_authorization AS special_authorization_34, t14.special_authorization_date AS special_authorization_date_35, t14.application_id AS application_id_36, t14.student_id AS student_id_37, t14.oportunity_research_id AS oportunity_research_id_38, t14.report_id AS report_id_39, t14.responsible_mentor_id AS responsible_mentor_id_40, t14.rcer_submission_id AS rcer_submission_id_41, t0.state_id AS state_id_42 FROM application t0 LEFT JOIN research t14 ON t14.application_id = t0.id WHERE t0.oportunity_research_id = ?" -params: array:1 [ 0 => 2592 ] -types: array:1 [ 0 => "integer" ] } }
return new UniqueConstraintViolationException($exception, $query);case 1054:case 1166:case 1611:return new InvalidFieldNameException($exception, $query);case 1052:case 1060:case 1110:return new NonUniqueFieldNameException($exception, $query);
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1976)
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 1918)
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/Connection.php
->
convertExceptionDuringQuery
(line 1111)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);} finally {if ($logger !== null) {$logger->stopQuery();}}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 1872)
}$sql = $this->getSelectSQL($criteria, $assoc, null, $limit, $offset);[$params, $types] = $this->expandToManyParameters($parameters);return $this->conn->executeQuery($sql, $params, $types);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
getOneToManyStatement
(line 1817)
AssociationMapping $assoc,object $sourceEntity,PersistentCollection $collection,): mixed {assert($assoc instanceof OneToManyAssociationMapping);$stmt = $this->getOneToManyStatement($assoc, $sourceEntity);return $this->loadCollectionFromStatement($assoc, $stmt, $collection);}/** Builds criteria and execute SQL statement to fetch the one to many entities from. */
in
vendor/doctrine/orm/src/UnitOfWork.php
->
loadOneToManyCollection
(line 2729)
$assoc = $collection->getMapping();$persister = $this->getEntityPersister($assoc->targetEntity);switch ($assoc->type()) {case ClassMetadata::ONE_TO_MANY:$persister->loadOneToManyCollection($assoc, $collection->getOwner(), $collection);break;case ClassMetadata::MANY_TO_MANY:$persister->loadManyToManyCollection($assoc, $collection->getOwner(), $collection);break;
in
vendor/doctrine/orm/src/PersistentCollection.php
->
loadCollection
(line 636)
if ($this->isDirty) {$newlyAddedDirtyObjects = $this->unwrap()->toArray();}$this->unwrap()->clear();$this->getUnitOfWork()->loadCollection($this);$this->takeSnapshot();if ($newlyAddedDirtyObjects) {$this->restoreNewObjectsInDirtyCollection($newlyAddedDirtyObjects);}
in
vendor/doctrine/orm/src/PersistentCollection.php
->
doInitialize
(line 186)
{if ($this->initialized || ! $this->association) {return;}$this->doInitialize();$this->initialized = true;}/**
in
vendor/doctrine/collections/src/AbstractLazyCollection.php
->
initialize
(line 315)
* @phpstan-return Traversable<TKey,T>*/#[ReturnTypeWillChange]public function getIterator(){$this->initialize();return $this->collection->getIterator();}/**
public function getOpenVacants(): int{$usedVacants = 0;foreach ($this->applications as $application) {if ($application->getState()->isVacancyConsuming()) {$usedVacants++;}}
}$studentsCanApply = $settingsService->get('apply-by-student', true);$mentorsHaveActivePenalizations = $oportunityResearch->mentorsHaveActivePenalizations();$isCurrentUserPenalized = $currentUser && $currentUser->hasActivePenalizations();$hasOpenVacants = $oportunityResearch->getOpenVacants() > 0;$canCurrentUserApply = $studentsCanApply && !$isCurrentUserPenalized && !$mentorsHaveActivePenalizations && $hasOpenVacants;$year = $settingsService->getAcademicYearForResearchFromDate(new \DateTime());$semester = $settingsService->getSemesterForResearchFromDate(new \DateTime());
in
vendor/symfony/http-kernel/HttpKernel.php
->
show
(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 193)
if (!$this->handlingHttpCache) {$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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
use App\Kernel;date_default_timezone_set('America/Santiago');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 132)
}try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/*** {@inheritDoc}*/public function execute($params = null): Result{return $this->wrappedStatement->execute($params);}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 98)
'sql' => $this->sql,'params' => $params ?? $this->params,'types' => $this->types,]);return parent::execute($params);}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/*** {@inheritDoc}*/public function execute($params = null): Result{return $this->wrappedStatement->execute($params);}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php
->
execute
(line 70)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute($params);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1104)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 1872)
}$sql = $this->getSelectSQL($criteria, $assoc, null, $limit, $offset);[$params, $types] = $this->expandToManyParameters($parameters);return $this->conn->executeQuery($sql, $params, $types);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
getOneToManyStatement
(line 1817)
AssociationMapping $assoc,object $sourceEntity,PersistentCollection $collection,): mixed {assert($assoc instanceof OneToManyAssociationMapping);$stmt = $this->getOneToManyStatement($assoc, $sourceEntity);return $this->loadCollectionFromStatement($assoc, $stmt, $collection);}/** Builds criteria and execute SQL statement to fetch the one to many entities from. */
in
vendor/doctrine/orm/src/UnitOfWork.php
->
loadOneToManyCollection
(line 2729)
$assoc = $collection->getMapping();$persister = $this->getEntityPersister($assoc->targetEntity);switch ($assoc->type()) {case ClassMetadata::ONE_TO_MANY:$persister->loadOneToManyCollection($assoc, $collection->getOwner(), $collection);break;case ClassMetadata::MANY_TO_MANY:$persister->loadManyToManyCollection($assoc, $collection->getOwner(), $collection);break;
in
vendor/doctrine/orm/src/PersistentCollection.php
->
loadCollection
(line 636)
if ($this->isDirty) {$newlyAddedDirtyObjects = $this->unwrap()->toArray();}$this->unwrap()->clear();$this->getUnitOfWork()->loadCollection($this);$this->takeSnapshot();if ($newlyAddedDirtyObjects) {$this->restoreNewObjectsInDirtyCollection($newlyAddedDirtyObjects);}
in
vendor/doctrine/orm/src/PersistentCollection.php
->
doInitialize
(line 186)
{if ($this->initialized || ! $this->association) {return;}$this->doInitialize();$this->initialized = true;}/**
in
vendor/doctrine/collections/src/AbstractLazyCollection.php
->
initialize
(line 315)
* @phpstan-return Traversable<TKey,T>*/#[ReturnTypeWillChange]public function getIterator(){$this->initialize();return $this->collection->getIterator();}/**
public function getOpenVacants(): int{$usedVacants = 0;foreach ($this->applications as $application) {if ($application->getState()->isVacancyConsuming()) {$usedVacants++;}}
}$studentsCanApply = $settingsService->get('apply-by-student', true);$mentorsHaveActivePenalizations = $oportunityResearch->mentorsHaveActivePenalizations();$isCurrentUserPenalized = $currentUser && $currentUser->hasActivePenalizations();$hasOpenVacants = $oportunityResearch->getOpenVacants() > 0;$canCurrentUserApply = $studentsCanApply && !$isCurrentUserPenalized && !$mentorsHaveActivePenalizations && $hasOpenVacants;$year = $settingsService->getAcademicYearForResearchFromDate(new \DateTime());$semester = $settingsService->getSemesterForResearchFromDate(new \DateTime());
in
vendor/symfony/http-kernel/HttpKernel.php
->
show
(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 193)
if (!$this->handlingHttpCache) {$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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
use App\Kernel;date_default_timezone_set('America/Santiago');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 130)
. ' Statement::bindParam() or Statement::bindValue() instead.',);}try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 130)
. ' Statement::bindParam() or Statement::bindValue() instead.',);}try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/*** {@inheritDoc}*/public function execute($params = null): Result{return $this->wrappedStatement->execute($params);}}
in
vendor/doctrine/dbal/src/Logging/Statement.php
->
execute
(line 98)
'sql' => $this->sql,'params' => $params ?? $this->params,'types' => $this->types,]);return parent::execute($params);}}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php
->
execute
(line 69)
/*** {@inheritDoc}*/public function execute($params = null): Result{return $this->wrappedStatement->execute($params);}}
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php
->
execute
(line 70)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::execute($params);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1104)
$stmt = $connection->prepare($sql);$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 1872)
}$sql = $this->getSelectSQL($criteria, $assoc, null, $limit, $offset);[$params, $types] = $this->expandToManyParameters($parameters);return $this->conn->executeQuery($sql, $params, $types);}/*** {@inheritDoc}*/
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
getOneToManyStatement
(line 1817)
AssociationMapping $assoc,object $sourceEntity,PersistentCollection $collection,): mixed {assert($assoc instanceof OneToManyAssociationMapping);$stmt = $this->getOneToManyStatement($assoc, $sourceEntity);return $this->loadCollectionFromStatement($assoc, $stmt, $collection);}/** Builds criteria and execute SQL statement to fetch the one to many entities from. */
in
vendor/doctrine/orm/src/UnitOfWork.php
->
loadOneToManyCollection
(line 2729)
$assoc = $collection->getMapping();$persister = $this->getEntityPersister($assoc->targetEntity);switch ($assoc->type()) {case ClassMetadata::ONE_TO_MANY:$persister->loadOneToManyCollection($assoc, $collection->getOwner(), $collection);break;case ClassMetadata::MANY_TO_MANY:$persister->loadManyToManyCollection($assoc, $collection->getOwner(), $collection);break;
in
vendor/doctrine/orm/src/PersistentCollection.php
->
loadCollection
(line 636)
if ($this->isDirty) {$newlyAddedDirtyObjects = $this->unwrap()->toArray();}$this->unwrap()->clear();$this->getUnitOfWork()->loadCollection($this);$this->takeSnapshot();if ($newlyAddedDirtyObjects) {$this->restoreNewObjectsInDirtyCollection($newlyAddedDirtyObjects);}
in
vendor/doctrine/orm/src/PersistentCollection.php
->
doInitialize
(line 186)
{if ($this->initialized || ! $this->association) {return;}$this->doInitialize();$this->initialized = true;}/**
in
vendor/doctrine/collections/src/AbstractLazyCollection.php
->
initialize
(line 315)
* @phpstan-return Traversable<TKey,T>*/#[ReturnTypeWillChange]public function getIterator(){$this->initialize();return $this->collection->getIterator();}/**
public function getOpenVacants(): int{$usedVacants = 0;foreach ($this->applications as $application) {if ($application->getState()->isVacancyConsuming()) {$usedVacants++;}}
}$studentsCanApply = $settingsService->get('apply-by-student', true);$mentorsHaveActivePenalizations = $oportunityResearch->mentorsHaveActivePenalizations();$isCurrentUserPenalized = $currentUser && $currentUser->hasActivePenalizations();$hasOpenVacants = $oportunityResearch->getOpenVacants() > 0;$canCurrentUserApply = $studentsCanApply && !$isCurrentUserPenalized && !$mentorsHaveActivePenalizations && $hasOpenVacants;$year = $settingsService->getAcademicYearForResearchFromDate(new \DateTime());$semester = $settingsService->getSemesterForResearchFromDate(new \DateTime());
in
vendor/symfony/http-kernel/HttpKernel.php
->
show
(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 193)
if (!$this->handlingHttpCache) {$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 32)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
use App\Kernel;date_default_timezone_set('America/Santiago');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 09:14:13 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "736668"
},
"request_uri": "https://gestionipre.investigacion-test.ing.uc.cl/_profiler/736668",
"method": "GET"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
"event": "kernel.request",
"listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\IsSignatureValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\IsSignatureValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\Controller\ArgumentResolver\RequestPayloadValueResolver::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\Controller\\ArgumentResolver\\RequestPayloadValueResolver::onKernelControllerArguments"
}
|
| DEBUG 09:14:13 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Traces 3
|
[3/3]
InvalidFieldNameException
|
|---|
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't14.grade_confirmed' in 'field list'
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:69
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1976)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1918)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
(vendor/doctrine/dbal/src/Connection.php:1111)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1872)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->getOneToManyStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1817)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadOneToManyCollection()
(vendor/doctrine/orm/src/UnitOfWork.php:2729)
at Doctrine\ORM\UnitOfWork->loadCollection()
(vendor/doctrine/orm/src/PersistentCollection.php:636)
at Doctrine\ORM\PersistentCollection->doInitialize()
(vendor/doctrine/orm/src/PersistentCollection.php:186)
at Doctrine\ORM\PersistentCollection->initialize()
(vendor/doctrine/collections/src/AbstractLazyCollection.php:315)
at Doctrine\Common\Collections\AbstractLazyCollection->getIterator()
(src/Entity/OportunityResearch.php:338)
at App\Entity\OportunityResearch->getOpenVacants()
(src/Controller/OportunityResearchController.php:241)
at App\Controller\OportunityResearchController->show()
(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:193)
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:32)
at require_once('/var/www/html/gestionipre/vendor/autoload_runtime.php')
(public/index.php:7)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't14.grade_confirmed' in 'field list'
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:132)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:98)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:1104)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1872)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->getOneToManyStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1817)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadOneToManyCollection()
(vendor/doctrine/orm/src/UnitOfWork.php:2729)
at Doctrine\ORM\UnitOfWork->loadCollection()
(vendor/doctrine/orm/src/PersistentCollection.php:636)
at Doctrine\ORM\PersistentCollection->doInitialize()
(vendor/doctrine/orm/src/PersistentCollection.php:186)
at Doctrine\ORM\PersistentCollection->initialize()
(vendor/doctrine/collections/src/AbstractLazyCollection.php:315)
at Doctrine\Common\Collections\AbstractLazyCollection->getIterator()
(src/Entity/OportunityResearch.php:338)
at App\Entity\OportunityResearch->getOpenVacants()
(src/Controller/OportunityResearchController.php:241)
at App\Controller\OportunityResearchController->show()
(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:193)
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:32)
at require_once('/var/www/html/gestionipre/vendor/autoload_runtime.php')
(public/index.php:7)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 't14.grade_confirmed' in 'field list'
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:130)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/doctrine/dbal/src/Logging/Statement.php:98)
at Doctrine\DBAL\Logging\Statement->execute()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractStatementMiddleware.php:69)
at Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware->execute()
(vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php:70)
at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:1104)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1872)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->getOneToManyStatement()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:1817)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadOneToManyCollection()
(vendor/doctrine/orm/src/UnitOfWork.php:2729)
at Doctrine\ORM\UnitOfWork->loadCollection()
(vendor/doctrine/orm/src/PersistentCollection.php:636)
at Doctrine\ORM\PersistentCollection->doInitialize()
(vendor/doctrine/orm/src/PersistentCollection.php:186)
at Doctrine\ORM\PersistentCollection->initialize()
(vendor/doctrine/collections/src/AbstractLazyCollection.php:315)
at Doctrine\Common\Collections\AbstractLazyCollection->getIterator()
(src/Entity/OportunityResearch.php:338)
at App\Entity\OportunityResearch->getOpenVacants()
(src/Controller/OportunityResearchController.php:241)
at App\Controller\OportunityResearchController->show()
(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:193)
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:32)
at require_once('/var/www/html/gestionipre/vendor/autoload_runtime.php')
(public/index.php:7)
|