Skip to content

Commit 67c6c43

Browse files
committed
Fix/update tutorial links. Small whitespace changes
1 parent 9b1f30c commit 67c6c43

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

samples/tutorial/Python-and-Oracle-Database-The-New-Wave-of-Scripting.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h2><a name="preface">Setup</a></h2>
179179
later.</p>
180180

181181
<p>Install <a
182-
href="https://pypi.org/project/python-oracledb/">python-oracledb</a> with
182+
href="https://pypi.org/project/oracledb/">python-oracledb</a> with
183183
a command like <code>pip install oracledb --upgrade</code></p>
184184

185185
<p>Ensure you can access an Oracle Database.</p>
@@ -293,11 +293,11 @@ <h4>Review the connection credentials used by the tutorial scripts</h4>
293293

294294
<p>The tutorial instructions may need adjusting, depending on how you have set up your environment.</p>
295295
</li>
296-
296+
297297
<li><h4> Runtime Naming</h4>
298298

299-
<p>At runtime, the module name of the python-oracledb package is <code>oracledb</code>:</p>
300-
299+
<p>At runtime, the module name of the python-oracledb package is <code>oracledb</code>:</p>
300+
301301
<pre>import oracledb</pre></li>
302302

303303
<li><h4>Python-oracledb defaults</h4>
@@ -1186,7 +1186,7 @@ <h2><a name="binding">4. Binding Data</a></h2>
11861186

11871187
<h2><a name="plsql">5. PL/SQL</a></h2>
11881188

1189-
<p>PL/SQL is Oracle's procedural language extension to SQL. PL/SQL procedures and functions are stored and run in the database. Using PL/SQL lets all database applications reuse logic, no matter how the application accesses the database. Many data-related operations can be performed in PL/SQL faster than extracting the data into a program (for example, Python) and then processing it.<em>Documentation link for further reading: <a
1189+
<p>PL/SQL is Oracle's procedural language extension to SQL. PL/SQL procedures and functions are stored and run in the database. Using PL/SQL lets all database applications reuse logic, no matter how the application accesses the database. Many data-related operations can be performed in PL/SQL faster than extracting the data into a program (for example, Python) and then processing it. <em>Documentation link for further reading: <a
11901190
href="https://python-oracledb.readthedocs.io/en/latest/user_guide/plsql_execution.html">PL/SQL Execution</a></em>.</p>
11911191

11921192
<ul>
@@ -1686,8 +1686,8 @@ <h2><a name="subclass">9. Subclassing connections and cursors</a></h2>
16861686
creation. This can be used to alter or log connection and execution
16871687
parameters, and to extend python-oracledb functionality. <em>Documentation link for
16881688
further reading: <a
1689-
href="https://python-oracledb.readthedocs.io/en/latest/user_guide/tracing_sql.html"
1690-
>Tracing SQL and PL/SQL Statements</a></em>.</p>
1689+
href="https://python-oracledb.readthedocs.io/en/latest/user_guide/tracing.html#application-tracing"
1690+
>Application Tracing</a></em>.</p>
16911691

16921692
<ul>
16931693
<li><h4>9.1 Subclassing connections</h4>
@@ -1834,7 +1834,7 @@ <h4> 10.1 Review the Oracle Client library path</h4>
18341834

18351835
<p>In all other cases (including Linux with Oracle Instant Client), make sure that <code>instant_client_dir</code> is set to <code>None</code>. In these cases you must make sure that the Oracle libraries from Instant Client or your ORACLE_HOME are in your system library search path before you start Python. On Linux, the path can be configured with <em>ldconfig</em> or with the <em>LD_LIBRARY_PATH</em> environment variable.</p>
18361836
</li>
1837-
</ul>
1837+
</ul>
18381838
</li>
18391839
<li><h4 id="thickconfig">10.2 Review the configuration files for thick mode</h4>
18401840

@@ -2721,7 +2721,7 @@ <h2><a name="resources">Resources</a></h2>
27212721
<ul>
27222722
<li><a href="https://docs.python.org/3/" >Python Documentation</a></li>
27232723
<li><a href="http://python-oracledb.readthedocs.io/en/latest/index.html" >Python python-oracledb Documentation</a></li>
2724-
<li><a href="https://github.com/oracle/python-oracledb" >Python-oracledb Source Code Repository</a></li>
2724+
<li><a href="https://github.com/oracle/python-oracledb/tree/main/samples" >Python-oracledb Source Code Repository Samples</a></li>
27252725
</ul>
27262726

27272727
<div class="footer"></div>

0 commit comments

Comments
 (0)