[DB-SIG] DCOracle & Oracle 8.1.5 (Linux)

Mike Wilson mrw@plexus.demon.co.uk
Sat, 12 Feb 2000 11:15:55 +0000


It was hard work, but I managed to build DCOracle for Oracle
8.1.5. Problem is, it regularly goes "Segmentation fault" on
pretty simple scripts like:

import DCOracle

dbc = DCOracle.Connect ("scott/tiger@orcl")
cursor = dbc.cursor ()

cursor.execute ("select * from emp order by ename")

row = cursor.fetchone ()

while row:
    print row [0]
    row = cursor.fetchone ()


The script prints all the rows, so it looks like it's crashing
inside Oracle or DCOracle during cleanup. Has anyone had
similar problems?  Any idea what the solution is?

----------------------------------------------
Mike Wilson             Plexus Systems Ltd, Reading Berkshire, UK
mrw@plexus.demon.co.uk             http://www.plexus.demon.co.uk/