我正在尝试使用 Python cx_oracle 更新表中的条目。该列名为“模板”,它的数据类型为 CLOB。
这是我的代码:
dsn = cx_Oracle.makedsn(hostname, port, sid)
orcl = cx_Oracle.connect(username + '/' + password + '@' + dsn)
curs = orcl.cursor()
sql = "update mytable set template='" + template + "' where id='6';"
curs.execute(sql)
orcl.close()
当我这样做时,我收到一个错误,说字符串文字太长。模板变量包含大约 26000 个字符。我该如何解决这个问题?
编辑:
我发现了这个: http: //osdir.com/ml/python.db.cx-oracle/2005-04/msg00003.html
所以我尝试了这个:
curs.setinputsizes(value = cx_Oracle.CLOB)
sql = "update mytable set template='values(:value)' where id='6';"
curs.execute(sql, value = template)
我得到一个“ORA-01036:非法变量名/数字错误”
编辑2:
所以这是我现在的代码:
curs.setinputsizes(template = cx_Oracle.CLOB)
sql = "update mytable set template= :template where id='6';"
print sql, template
curs.execute(sql, template=template)
我现在收到 ORA-00911: invalid character 错误。