X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdatabase%2Flib-local.php;h=241aeb95a9ffffd1a7ecc5bce035c1d6c3d7fa5b;hb=1dd3c575552fbec19a613e364bf971cfb50fbc20;hp=9e9d5a663c480a62991ae66cf96027ef5bb1b494;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308;p=core.git diff --git a/inc/database/lib-local.php b/inc/database/lib-local.php index 9e9d5a66..241aeb95 100644 --- a/inc/database/lib-local.php +++ b/inc/database/lib-local.php @@ -2,11 +2,11 @@ /** * Initializes the local file database class * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,30 +22,8 @@ * 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 = ObjectFactory::createObjectByConfiguredName('local_file_database_class'); // [EOF] ?>