Skip to content

Commit

Permalink
register MariaDB in the UI
Browse files Browse the repository at this point in the history
Signed-off-by: Iliyan Velichkov <[email protected]>
  • Loading branch information
iliyan-velichkov committed Sep 27, 2024
1 parent 0ef5ecc commit 1f16d64
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ dbdialog.controller('DBDialogController', ['$scope', 'messageHub', 'ViewParamete
"org.h2.Driver": "jdbc:h2:path/name",
"org.postgresql.Driver": "jdbc:postgresql://host:port/database",
"com.mysql.cj.jdbc.Driver": "jdbc:mysql://host:port/database",
"org.mariadb.jdbc.Driver": "jdbc:mariadb://host:port/database",
"com.sap.db.jdbc.Driver": "jdbc:sap://host:port/?encrypt=true&validateCertificate=false",
"net.snowflake.client.jdbc.SnowflakeDriver": "jdbc:snowflake://account_identifier.snowflakecomputing.com/?db=SNOWFLAKE_SAMPLE_DATA&schema=TPCH_SF1000",
"org.eclipse.dirigible.mongodb.jdbc.Driver": "jdbc:mongodb://host:port/database",
Expand All @@ -41,6 +42,7 @@ dbdialog.controller('DBDialogController', ['$scope', 'messageHub', 'ViewParamete
{ text: "H2 - org.h2.Driver", value: "org.h2.Driver" },
{ text: "PostgreSQL - org.postgresql.Driver", value: "org.postgresql.Driver" },
{ text: "MySQL - com.mysql.cj.jdbc.Driver", value: "com.mysql.cj.jdbc.Driver" },
{ text: "MariaDB - org.mariadb.jdbc.Driver", value: "org.mariadb.jdbc.Driver" },
{ text: "SAP HANA - com.sap.db.jdbc.Driver", value: "com.sap.db.jdbc.Driver" },
{ text: "Snowflake - net.snowflake.client.jdbc.SnowflakeDriver", value: "net.snowflake.client.jdbc.SnowflakeDriver" },
{ text: "MongoDB - org.eclipse.dirigible.mongodb.jdbc.Driver", value: "org.eclipse.dirigible.mongodb.jdbc.Driver" }
Expand Down Expand Up @@ -92,4 +94,4 @@ dbdialog.controller('DBDialogController', ['$scope', 'messageHub', 'ViewParamete
}
$scope.state.isBusy = false;
}
}]);
}]);

0 comments on commit 1f16d64

Please sign in to comment.