diff --git a/index.html b/index.html index 724b05f..b61c70b 100644 --- a/index.html +++ b/index.html @@ -42,10 +42,130 @@ versions 3.4 and higher. You can use cx_Oracle with Oracle 11.2, 12.1 and 12.2 client libraries. Oracle's standard client-server version interoperability allows connection to both older and newer databases. For example Oracle 12.2 client libraries can connect to Oracle -Database 11.2 or later.

+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)
+
+ +
+ +
+

Installation

+ +See cx_Oracle Installation for detailed instructions. + +
+ +
+ +

Examples

+ +See the samples and the test suite. You can also look at the scripts in cx_OracleTools +and the modules in +cx_PyOracleLib. + +
+ +
+

Documentation

+ +See the cx_Oracle +Documentation. + +
+ +
+

Changes

+ +See What's New and the Release Notes. + +
+ +
+

Tests

+ +See the test suite. + +
+ +
+

Help

+ +

Issues and questions can be raised with the cx_Oracle community on +GitHub or on the mailing list.

+ +
+

Features

@@ -122,6 +242,8 @@ database, including in LOGON triggers.

  • Database startup and shutdown.

  • +
  • Sharded Databases

  • +
  • Oracle Database High Availability Features, such as FAN notifications and Transaction Guard support.

  • @@ -139,118 +261,6 @@ for more information.
    -
    -

    Installation

    - -See cx_Oracle Installation for detailed instructions. - - - -

    If you require cx_Oracle 5.3, download a Windows installer from PyPI or use -python -m pip install cx-oracle==5.3 to install from -source.

    - -

    Very old versions of cx_Oracle can be found in the files section at -Sourceforge.

    - -
    - -
    - -

    Example

    - -
    -    from __future__ import print_function
    -
    -    import cx_Oracle
    -
    -    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)
    -
    - -For more examples, please see the samples and the test suite. You can also look at the scripts in cx_OracleTools -and the modules in -cx_PyOracleLib. - -
    - -
    -

    Documentation

    - -See the cx_Oracle -Documentation and Release Notes. - -
    - -
    -

    Help

    - -

    Issues and questions can be raised with the cx_Oracle community on -GitHub or on the mailing list.

    - -
    - -