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.