3

我正在尝试使用 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 错误。

4

3 回答 3

5

在 sql 语句中插入值是一种非常糟糕的做法。您应该改用参数:

dsn = cx_Oracle.makedsn(hostname, port, sid)
orcl = cx_Oracle.connect(username + '/' + password + '@' + dsn)
curs = orcl.cursor()
curs.setinputsizes(template = cx_Oracle.CLOB)
sql = "update mytable set template= :template where id='6'"
curs.execute(sql, template=template)
orcl.close()
于 2011-12-23T20:33:50.710 回答
0

使用 IronPython

import sys
sys.path.append(r"...\Oracle\odp.net.11g.64bit")
import clr
clr.AddReference("Oracle.DataAccess")
from Oracle.DataAccess.Client import OracleConnection, OracleCommand,   OracleDataAdapter

connection = OracleConnection('userid=user;password=hello;datasource=database_1')
connection.Open()

command = OracleCommand()
command.Connection = connection
command.CommandText = "SQL goes here"
command.ExecuteNonQuery()
于 2015-10-13T13:30:19.540 回答
-1

更改表定义。一个varchar2字段最多可以存储 32767 个字节;因此,如果您使用的是 8 位编码,那么在使用 LOB 之前,您还有一些空间可以发挥作用。

于 2011-12-23T20:22:16.173 回答