From ce9384d73fbb6700073e92d4b4a0c488d0add5cf Mon Sep 17 00:00:00 2001 From: Anthony Tuininga Date: Mon, 19 Feb 2018 18:43:21 -0700 Subject: [PATCH] Reuse Quick Start content from the Installation instructions. --- index.html | 57 +++--------------------------------------------------- 1 file changed, 3 insertions(+), 54 deletions(-) diff --git a/index.html b/index.html index b61c70b..6a81a9b 100644 --- a/index.html +++ b/index.html @@ -49,60 +49,9 @@ Database 11.2.

Getting Started

- - -

Sample cx_Oracle Script

-
-    from __future__ import print_function
-
-    import cx_Oracle
-
-    # Connect as user "hr" with password "welcome" to the "oraclepdb" service running on this computer.
-    connection = cx_Oracle.connect("hr", "welcome", "localhost/orclpdb")
-
-    cursor = connection.cursor()
-    cursor.execute("""
-            SELECT first_name, last_name
-            FROM employees
-            WHERE department_id = :did AND employee_id > :eid""",
-            did = 50,
-            eid = 190)
-    for fname, lname in cursor:
-        print("Values:", fname, lname)
-
+See Quick Start cx_Oracle Installation.