我收到以下错误 'NoneType'对象没有'endswith'属性 在oracle db中进行批量插入时。
代码代码段:
(528, 'TEST', 'TEST', 1)
from django.db import connection
cursor = connection.cursor()
cursor.prepare("INSERT INTO c_dim_value(id, c_dimension_id, display_value, code, active_code) VALUES (c_dim_value_seq.nextval, :1, :2, :3, :4)")
cursor.executemany(None, new_dim_value_to_inserted)
错误:'NoneType'对象没有属性'以'结尾'