indexing description: "Database configuration." author: "Patrick Ruckstuhl " date: "$Date$" revision: "$Revision$" class DATABASE_CONFIG feature {NONE} -- Database access Db_config_parser: ORIGO_CONF_PARSER is -- parser for origo.conf once create Result.make("/etc/origo/origo.conf") end Db_config_hostname: STRING is "localhost" -- Database hostname Db_config_data_source: STRING is "origo" -- Database source Db_config_username: STRING is -- Database username once Result := Db_config_parser.get("storage_user") end Db_config_password: STRING is -- Database password once Result := Db_config_parser.get("storage_password") end end