Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ TableNotFoundException
Show exception properties
Doctrine\DBAL\Exception\TableNotFoundException {#760 -query: Doctrine\DBAL\Query {#758 -sql: """ \n SELECT\n m.*\n FROM\n members m, rights, rightsvolunteers\n WHERE\n m.Status = 'Active'\n AND m.Username <> 'SafetyTeam'\n AND m.id = rightsvolunteers.IdMember\n AND rights.`Name` = 'SafetyTeam'\n AND rightsvolunteers.IdRight = rights.id\n AND rightsvolunteers.Level > 0\n ORDER BY\n username\n """ -params: [] -types: [] } }
1008 => new DatabaseDoesNotExist($exception, $query),1213 => new DeadlockException($exception, $query),1205 => new LockWaitTimeoutException($exception, $query),1050 => new TableExistsException($exception, $query),1051,1146 => new TableNotFoundException($exception, $query),1216,1217,1451,1452,1701 => new ForeignKeyConstraintViolationException($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/Connection.php
->
convertExceptionDuringQuery
(line 809)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);}}/*** Executes a caching query.
in
vendor/doctrine/orm/src/NativeQuery.php
->
executeQuery
(line 69)
$parameters = array_values($parameters);$types = array_values($types);}return $this->em->getConnection()->executeQuery($this->sql,$parameters,$types,$this->queryCacheProfile,);
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/src/AbstractQuery.php
->
execute
(line 688)
** @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode*/public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed{return $this->execute(null, $hydrationMode);}/*** Gets the array of results for the query.*
AND rightsvolunteers.Level > 0ORDER BYusername", $rsm);return $query->getResult();}}
* @return Response*/#[Route(path: '/safety/team', name: 'safety_team')]public function showSafetyTeam(SafetyModel $safetyModel){$teamMembers = $safetyModel->getSafetyTeamMembers();return $this->render('safety/safetyteam.html.twig', ['team_members' => $teamMembers,'submenu' => ['items' => $this->getSubMenuItems(),
in
vendor/symfony/http-kernel/HttpKernel.php
->
showSafetyTeam
(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 191)
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());
<?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/Connection.php
::
new
(line 62)
$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);}}public function quote(string $value): string{
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 39)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int|string{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
->
query
(line 55)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 804)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/NativeQuery.php
->
executeQuery
(line 69)
$parameters = array_values($parameters);$types = array_values($types);}return $this->em->getConnection()->executeQuery($this->sql,$parameters,$types,$this->queryCacheProfile,);
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/src/AbstractQuery.php
->
execute
(line 688)
** @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode*/public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed{return $this->execute(null, $hydrationMode);}/*** Gets the array of results for the query.*
AND rightsvolunteers.Level > 0ORDER BYusername", $rsm);return $query->getResult();}}
* @return Response*/#[Route(path: '/safety/team', name: 'safety_team')]public function showSafetyTeam(SafetyModel $safetyModel){$teamMembers = $safetyModel->getSafetyTeamMembers();return $this->render('safety/safetyteam.html.twig', ['team_members' => $teamMembers,'submenu' => ['items' => $this->getSubMenuItems(),
in
vendor/symfony/http-kernel/HttpKernel.php
->
showSafetyTeam
(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 191)
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());
<?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/Connection.php
(line 57)
}public function query(string $sql): Result{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
->
query
(line 57)
}public function query(string $sql): Result{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 39)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int|string{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 24)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}public function quote(string $value): string{return $this->wrappedConnection->quote($value);
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
->
query
(line 55)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 804)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/orm/src/NativeQuery.php
->
executeQuery
(line 69)
$parameters = array_values($parameters);$types = array_values($types);}return $this->em->getConnection()->executeQuery($this->sql,$parameters,$types,$this->queryCacheProfile,);
in
vendor/doctrine/orm/src/AbstractQuery.php
->
_doExecute
(line 930)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/src/AbstractQuery.php
->
executeIgnoreQueryCache
(line 886)
): mixed {if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/src/AbstractQuery.php
->
execute
(line 688)
** @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode*/public function getResult(string|int $hydrationMode = self::HYDRATE_OBJECT): mixed{return $this->execute(null, $hydrationMode);}/*** Gets the array of results for the query.*
AND rightsvolunteers.Level > 0ORDER BYusername", $rsm);return $query->getResult();}}
* @return Response*/#[Route(path: '/safety/team', name: 'safety_team')]public function showSafetyTeam(SafetyModel $safetyModel){$teamMembers = $safetyModel->getSafetyTeamMembers();return $this->render('safety/safetyteam.html.twig', ['team_members' => $teamMembers,'submenu' => ['items' => $this->getSubMenuItems(),
in
vendor/symfony/http-kernel/HttpKernel.php
->
showSafetyTeam
(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 191)
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());
<?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 18:45:15 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "b5a074"
},
"request_uri": "https://alpha.stage.bewelcome.org/_profiler/b5a074",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
TableNotFoundException
|
|---|
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist
at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:51
at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1460)
at Doctrine\DBAL\Connection->handleDriverException(object(Exception), object(Query))
(vendor/doctrine/dbal/src/Connection.php:1396)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery(object(Exception), ' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ', array(), array())
(vendor/doctrine/dbal/src/Connection.php:809)
at Doctrine\DBAL\Connection->executeQuery(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ', array(), array(), null)
(vendor/doctrine/orm/src/NativeQuery.php:69)
at Doctrine\ORM\NativeQuery->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:688)
at Doctrine\ORM\AbstractQuery->getResult()
(src/Model/SafetyModel.php:42)
at App\Model\SafetyModel->getSafetyTeamMembers()
(src/Controller/SafetyController.php:88)
at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException))
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:62)
at Doctrine\DBAL\Driver\PDO\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Logging/Connection.php:39)
at Doctrine\DBAL\Logging\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Connection.php:804)
at Doctrine\DBAL\Connection->executeQuery(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ', array(), array(), null)
(vendor/doctrine/orm/src/NativeQuery.php:69)
at Doctrine\ORM\NativeQuery->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:688)
at Doctrine\ORM\AbstractQuery->getResult()
(src/Model/SafetyModel.php:42)
at App\Model\SafetyModel->getSafetyTeamMembers()
(src/Controller/SafetyController.php:88)
at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'bewelcome.members' doesn't exist
at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57
at PDO->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Driver/PDO/Connection.php:57)
at Doctrine\DBAL\Driver\PDO\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Logging/Connection.php:39)
at Doctrine\DBAL\Logging\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:24)
at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php:55)
at Symfony\Bridge\Doctrine\Middleware\Debug\Connection->query(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ')
(vendor/doctrine/dbal/src/Connection.php:804)
at Doctrine\DBAL\Connection->executeQuery(' SELECT m.* FROM members m, rights, rightsvolunteers WHERE m.Status = \'Active\' AND m.Username <> \'SafetyTeam\' AND m.id = rightsvolunteers.IdMember AND rights.`Name` = \'SafetyTeam\' AND rightsvolunteers.IdRight = rights.id AND rightsvolunteers.Level > 0 ORDER BY username ', array(), array(), null)
(vendor/doctrine/orm/src/NativeQuery.php:69)
at Doctrine\ORM\NativeQuery->_doExecute()
(vendor/doctrine/orm/src/AbstractQuery.php:930)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:886)
at Doctrine\ORM\AbstractQuery->execute(null, 1)
(vendor/doctrine/orm/src/AbstractQuery.php:688)
at Doctrine\ORM\AbstractQuery->getResult()
(src/Model/SafetyModel.php:42)
at App\Model\SafetyModel->getSafetyTeamMembers()
(src/Controller/SafetyController.php:88)
at App\Controller\SafetyController->showSafetyTeam(object(SafetyModel))
(vendor/symfony/http-kernel/HttpKernel.php:183)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:191)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:32)
at require_once('/srv/bewelcome/vendor/autoload_runtime.php')
(public/index.php:5)
|