X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fdatabase%2Flib-local.php;h=84fd7238892d3ec057e717cb0bd6a02adbefd623;hp=68ef141b315f3a6570e76999eff25ff98313e3e2;hb=49f84a522f0ccac3b70728cd41011a0be0eed8cf;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae
diff --git a/inc/database/lib-local.php b/inc/database/lib-local.php
index 68ef141b..84fd7238 100644
--- a/inc/database/lib-local.php
+++ b/inc/database/lib-local.php
@@ -22,30 +22,11 @@
* along with this program. If not, see .
*/
-// Zum Testen speichern wir in lokale Dateien (LocalFileDatabase)
-try {
- $layerInstance = LocalFileDatabase::createLocalFileDatabase(FrameworkConfiguration::getInstance()->readConfig('local_db_path'), FileIoHandler::getInstance());
-} catch (SavePathIsEmptyException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer could not be initialized. Reason: %s",
- $e->getMessage()
- ));
-} catch (SavePathNotFoundException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer could not be initialized. Reason: %s",
- $e->getMessage()
- ));
-} catch (SavePathIsNoDirectoryException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer could not be initialized. Reason: %s",
- $e->getMessage()
- ));
-} catch (SavePathReadProtectedException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer could not be initialized. Reason: %s",
- $e->getMessage()
- ));
-} catch (SavePathWriteProtectedException $e) {
- ApplicationEntryPoint::app_die(sprintf("[Main:] Database layer could not be initialized. Reason: %s",
- $e->getMessage()
- ));
-}
+// For testing purposes we use a local file database
+$databaseInstance = LocalFileDatabase::createLocalFileDatabase(
+ FrameworkConfiguration::getInstance()->readConfig('local_db_path'),
+ FileIoHandler::getInstance()
+);
// [EOF]
?>