Tell me, please, how to read the clobber correctly from the table?
Cur.execute("select email, html, id from table") lettter = cur.fetchall() conn.close() for i in letter: if len(letter) > 0: rec = i[0] html = i[1].read() #Это CLOB id = i[2] Then I start to sort out and get an error.
Cx.oracle.programmingerror: lob variable no longer valid after subsequent fetch Everything works if you use the fetchone () method, but then you have to dynamically collect the SQL query and pass it the line number. How to be?