@@ -112,27 +112,40 @@ content: |
112112 - Description
113113
114114 * - URL
115- - Specify your {+dl+} URI in the following format:
115+ - Specify your {+dl+} URL in the following format:
116116
117- a. Prepend ``jdbc:`` to your {+dl+} URI. You can get your {+dl+}
118- URI from your {+dl+} connection string. For example, your
119- {+dl+} URI in the connection string should look similar to the
120- following:
117+ .. code-block:: none
118+
119+ jdbc:<your-data-lake-URL>/<database-to-connect-to>
120+
121+ To construct the URL:
122+
123+ a. Prepend ``jdbc:`` to your {+dl+} URL. You can get your {+dl+}
124+ URL from your {+dl+} connection string. For information on how to
125+ get the {+dl+} connection string, see :ref:`Connect to Your Data
126+ Lake <data-lake-connect>`. For example, your {+dl+} URL in the
127+ connection string should look similar to the following:
121128
122129 .. code-block:: none
123130 :copyable: false
124131
125- "mongodb://myTestDL-7hgjn.a.query.mongodb-dev .net/<dbname>"
132+ "mongodb://myTestDL-7hgjn.a.query.mongodb.net/<dbname>"
126133
127- For information on how to get the {+dl+} connection string, see
128- :ref:`Connect to Your Data Lake <data-lake-connect>`.
134+ For example, to the preceding {+dl+} URL, prepend ``jdbc:`` as
135+ shown below:
129136
130- b. Replace ``<dbname>`` at the end of your {+dl+} URI
131- with the name of the database to which you want to connect.
137+ .. code-block:: none
132138
133- .. code-block:: none
139+ jdbc:mongodb://myTestDL-7hgjn.a.query.mongodb.net/<dbname>
140+
141+ b. Replace ``<dbname>`` at the end of your {+dl+} URL with the name
142+ of the database to which you want to connect. For example, to
143+ connect to a database named ``testDB`` using the connection
144+ string in the previous step:
145+
146+ .. code-block:: none
134147
135- jdbc:<your-data-lake-URI>/<database-to-connect-to>
148+ jdbc:mongodb://myTestDL-7hgjn.a.query.mongodb.net/testDB
136149
137150 * - Dialect
138151 - Select :guilabel:`MySQL` from the drop-down.
0 commit comments