From 3ea2d41b30527c3bea87d15fcb2d107ecbc268bc Mon Sep 17 00:00:00 2001 From: Patrick Erdelt Date: Thu, 24 Mar 2022 13:26:58 +0100 Subject: [PATCH] Docs: Adding more DBMS connection informations --- docs/DBMS.md | 113 ++++++++++++++++++++++++++++++++++++++---- docs/Example-TPC-H.md | 2 +- 2 files changed, 104 insertions(+), 11 deletions(-) diff --git a/docs/DBMS.md b/docs/DBMS.md index f94d06e4..822e2995 100644 --- a/docs/DBMS.md +++ b/docs/DBMS.md @@ -6,17 +6,91 @@ Make sure to adjust the * URL of the server `localhost` * port of the server, when necessary -* name of the database `database` +* name of the database `database` (and / or `schema`) * username and passwort `user`/`password` -* path of the (locally existing) JDBC jar file +* path of the (locally existing) JDBC jar file - you will have to download the file from the website of the vendor + + + +## DB2 + +``` +[ + { + 'name': 'DB2', + 'info': 'This is a demo of DB2', + 'active': True, + 'JDBC': { + 'driver': 'com.ibm.db2.jcc.DB2Driver', + 'url': 'jdbc:db2://localhost:50000/database:currentSchema=schema', + 'auth': ['user', 'password'], + 'jar': 'jars/db2jcc4.jar' + } + }, +] +``` + +## Exasol + +``` +[ + { + 'name': 'Exasol', + 'info': 'This is a demo of Exasol', + 'active': True, + 'JDBC': { + 'driver': 'com.exasol.jdbc.EXADriver', + 'url': 'jdbc:exa:localhost:8888;schema=schema', + 'auth': ['user', 'password'], + 'jar': 'jars/db2jcc4.jar' + } + }, +] +``` + +## Hyperscale (Citus) + +``` +[ + { + 'name': 'Citus', + 'info': 'This is a demo of Citus', + 'active': True, + 'JDBC': { + 'driver': 'org.postgresql.Driver', + 'url': 'jdbc:postgresql://localhost:5432/database', + 'auth': ['user', 'password'], + 'jar': 'jars/postgresql-42.2.5.jar' + } + }, +] +``` + +## MariaDB + +``` +[ + { + 'name': 'MariaDB', + 'info': 'This is a demo of MariaDB', + 'active': True, + 'JDBC': { + 'driver': 'org.mariadb.jdbc.Driver', + 'url': 'jdbc:mariadb://localhost:3306/database', + 'auth': ['user', 'password'], + 'jar': 'jars/mariadb-java-client-2.4.0.jar' + } + }, +] +``` ## MonetDB ``` [ { - 'name': "MonetDB", - 'info': "This is a demo of MonetDB", + 'name': 'MonetDB', + 'info': 'This is a demo of MonetDB', 'active': True, 'JDBC': { 'driver': 'nl.cwi.monetdb.jdbc.MonetDriver', @@ -33,15 +107,34 @@ Make sure to adjust the ``` [ { - 'name': "MySQL", - 'info': "This is a demo of MySQL", + 'name': 'MySQL', + 'info': 'This is a demo of MySQL', 'active': True, 'JDBC': { - 'driver': "com.mysql.cj.jdbc.Driver", - 'url': "jdbc:mysql://localhost:3306/database?serverTimezone=Europe/Berlin", - 'auth': ["user", "password"], - 'jar': "jars/mysql-connector-java-8.0.13.jar" + 'driver': 'com.mysql.cj.jdbc.Driver', + 'url': 'jdbc:mysql://localhost:3306/database?serverTimezone=Europe/Berlin', + 'auth': ['user', 'password'], + 'jar': 'jars/mysql-connector-java-8.0.13.jar' }, }, ] ``` + +## PostgreSQL + +``` +[ + { + 'name': 'PostgreSQL', + 'info': 'This is a demo of PostgreSQL', + 'active': True, + 'JDBC': { + 'driver': 'org.postgresql.Driver', + 'url': 'jdbc:postgresql://localhost:5432/database', + 'auth': ['user', 'password'], + 'jar': 'jars/postgresql-42.2.5.jar' + } + }, +] +``` + diff --git a/docs/Example-TPC-H.md b/docs/Example-TPC-H.md index 056069d6..2b46d314 100644 --- a/docs/Example-TPC-H.md +++ b/docs/Example-TPC-H.md @@ -76,7 +76,7 @@ Visit the address in a browser and select the experiment ``. ## Where to go -* Different DBMS +* Use different [DBMS](DBMS.html) * Add metadata * Use Bexhoma * SF