X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fdatabase.php;h=544a2a55dc3f51f4b487336b620d4953c8b05b0f;hp=30792197135d5d46a6e70f4d9112128bbc285e8f;hb=2854583acb819fa091c3e0405e50f5e2139ba9b7;hpb=b66bceda2b37dcf421e4d8f5bc007c8b7f7863c7 diff --git a/inc/database.php b/inc/database.php index 30792197..544a2a55 100644 --- a/inc/database.php +++ b/inc/database.php @@ -49,35 +49,10 @@ if ((file_exists($INC)) && (is_file($INC)) && (is_readable($INC))) { unset($INC); // Prepare database instance -try { - $db = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getInstance(), $layerInstance); -} catch (NullPointerException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} catch (InvalidDirectoryResourceException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} catch (PathIsEmptyException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} catch (PathIsNoDirectoryException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} catch (PathReadProtectedException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} catch (DirPointerNotOpenedException $e) { - ApplicationEntryPoint::app_die(sprintf("[Main:] Database sub-system not initialized for the follwing reason: %s
\n", - $e->getMessage() - )); -} +$db = DatabaseConnection::createDatabaseConnection(DebugMiddleware::getInstance(), $layerInstance); // Is the app variable there and valid? +// @TODO Rewrite this if (is_object($app)) $app->setDatabaseInstance($db); // [EOF]