En Tue, 03 Mar 2009 15:23:38 -0200, Loredana <loredana.p...@gmail.com> escribió:

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

Reply via email to