Difference between revisions of "Oracle Notes"

From PeformIQ Upgrade
Jump to navigation Jump to search
Line 37: Line 37:
=Python DBI=
=Python DBI=


* [http://www.python.org/dev/peps/pep-0249/]
* http://www.python.org/dev/peps/pep-0249/


[[Category:Oracle]]
[[Category:Oracle]]
[[Category:Database]]
[[Category:Database]]
[[Category:Python]]
[[Category:Python]]

Revision as of 14:15, 21 October 2009

Notes

cx_Oracle

>>> import cx_Oracle
>>> conn = cx_Oracle.connect('xxxx','xxxx','XX')
>>> curs = conn.cursor()
>>> curs.arraysize=50

>>> sql = 'SELECT * from DBUSER.BUG'

>>> curs.execute(sql)
<__builtin__.OracleCursor on <cx_Oracle.Connection to xxx@XX>>

>>> print curs.description
...

>>> print curs.fetchone()
...

>>> for x in curs:
	print x
...

>>> curs.execute('describe XXX.BUG')

cx_Oracle Working Notes

Python DBI