diff options
Diffstat (limited to 'plugins/org.eclipse.osee.support.config/launchConfig/osee.demo.db.connection.xml')
-rw-r--r-- | plugins/org.eclipse.osee.support.config/launchConfig/osee.demo.db.connection.xml | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/plugins/org.eclipse.osee.support.config/launchConfig/osee.demo.db.connection.xml b/plugins/org.eclipse.osee.support.config/launchConfig/osee.demo.db.connection.xml deleted file mode 100644 index 8dd0dcb3c39..00000000000 --- a/plugins/org.eclipse.osee.support.config/launchConfig/osee.demo.db.connection.xml +++ /dev/null @@ -1,49 +0,0 @@ -<DbConnection> - - <DatabaseInfo id="postgresqlInfo"> - <DatabaseHome key="#DBHOME#" /> - <DatabaseName key="#DBNAME#" value="OSEE" /> - <DatabaseType key="#TYPE#" value="postgresql" /> - <Prefix key="#PREFIX#" value="jdbc:postgresql" /> - <UserName key="#USERNAME#" value="osee" /> - <Password key="#PASSWORD#" value="osee" /> - <Host key="#HOST#" value="@AvailableDbServices.hostAddress" /> - <Port key="#PORT#" value="@AvailableDbServices.port" /> - </DatabaseInfo> - - <ConnectionDescription id="postgresql"> - <Driver>org.postgresql.Driver</Driver> - <Url>#PREFIX#://#HOST#:#PORT#/#DBHOME##DBNAME#</Url> - </ConnectionDescription> - - <DatabaseInfo id="hsql.db.info"> - <DatabaseHome key="#DBHOME#" value="file:~/hsql/osee.hsql.db" /> - <DatabaseName key="#DBNAME#" value="osee.hsql.db" /> - <DatabaseType key="#TYPE#" value="hsql" /> - <Prefix key="#PREFIX#" value="jdbc:hsqldb:hsql" /> - <UserName key="#USERNAME#" value="public" /> - <Password key="#PASSWORD#" value="" /> - <Host key="#HOST#" value="@AvailableDbServices.hostAddress" /> - <Port key="#PORT#" value="@AvailableDbServices.port" /> - </DatabaseInfo> - - <ConnectionDescription id="hsql.db.connection"> - <Driver>org.hsqldb.jdbc.JDBCDriver</Driver> - <Url>#PREFIX#://#HOST#:#PORT#/#DBNAME#</Url> - <Property key="hsqldb.tx" value="MVCC" /> - </ConnectionDescription> - - <AvailableDbServices> - - <Server id="hsql" dbInfo="hsql.db.info" hostAddress="127.0.0.1" - port="8088" connectsWith="hsql.db.connection" /> - - <Server id="osee.microdoc" dbInfo="postgresqlInfo" hostAddress="78.46.71.230" - port="5432" connectsWith="postgresql" applicationServer="http://osee.microdoc.com:8089/" /> - - <Server id="postgresqlLocalhost" dbInfo="postgresqlInfo" - hostAddress="localhost" port="5432" connectsWith="postgresql" - applicationServer="http://localhost:8089/" /> - - </AvailableDbServices> -</DbConnection> |