I try this code and it works:curs.execute(sqlstr) for rows in curs: for col in rows: try: print col.read() except: print col onother question? which is the best wey (fastest way) to discern LOB from other type?
type()? Add a line like this in the code above: print type(col) -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list