Added a comment indicating where to find additional examples.

This commit is contained in:
Anthony Tuininga 2007-10-01 22:46:53 +00:00
parent 4ab1a9e2e9
commit ea89e39983

View File

@ -49,6 +49,12 @@ for column_1, column_2, column_3 in cursor.fetchall():
print "Values:", column_1, column_2, column_3
For more examples, please see the test suite in the test directory and the
samples in the samples directory. You can also look at the scripts in the
cx_OracleTools (http://cx-oracletools.sourceforge.net) and the modules in the
cx_PyOracleLib (http://cx-pyoraclelib.sourceforge.net) projects.
EXCEPTIONS:
The only exception to the DB API specification is the lack of a nextset()
method which is not supported by Oracle.