From 09df9300c733a93730db54c7ffc9ac7bcf5dcc26 Mon Sep 17 00:00:00 2001 From: Benjamin Cogrel Date: Fri, 13 Sep 2024 10:00:16 +0200 Subject: [PATCH] Update denodo.md --- guide/databases/denodo.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/guide/databases/denodo.md b/guide/databases/denodo.md index 7b0c114..b903f0d 100644 --- a/guide/databases/denodo.md +++ b/guide/databases/denodo.md @@ -12,7 +12,10 @@ Through the [Denodo](https://www.denodo.com/en) connector, Ontop is able to cons The following shows the content of a sample `.properties` file that can be used to connect Ontop to Denodo: ```bash -jdbc.url = jdbc:vdb://localhost:9999/books +# For Denodo >= 8 +jdbc.url = jdbc:denodo://localhost:9999/ +# For Denodo < 8 +#jdbc.url = jdbc:vdb://localhost:9999/books jdbc.user = admin jdbc.password = ${denodo.password} jdbc.driver = com.denodo.vdp.jdbc.Driver @@ -20,4 +23,4 @@ jdbc.driver = com.denodo.vdp.jdbc.Driver ## Nested Type Support -Nested data types and the [flatten lens](/guide/advanced/lenses#flattenlens) are not supported for Denodo. \ No newline at end of file +Nested data types and the [flatten lens](/guide/advanced/lenses#flattenlens) are not supported for Denodo.