Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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.xml20
1 files changed, 20 insertions, 0 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
index f512ea58eb8..db9da110219 100644
--- 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
@@ -32,8 +32,28 @@
<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="h2" dbInfo="h2.db.info" hostAddress="127.0.0.1"
port="8088" connectsWith="h2.db.connection" />

Back to the top