ORA-24360: Type Descriptor Object not specified for Object Bind/Define
Cause: Type Descriptor Object is a mandatory parameter for Object Types Binds and Defines.
Action: Please invoke the OCIBindObject() or OCIDefineObject() call with a valid Type Descriptor Object.
ORA-24360 错误是指在给定一个对象变量时,没有为其指定类型描述对象(Type Descriptor Object)。
1)首先,为要使用的对象变量装载相应的类型描述对象:
`MyObjectVariables := MyObjectTypeDescriptor.CREATE();`
2)然后,在做查询或更新操作之前,使用SELECT FROM INTO语句将表中的值赋值给对象变量:
`SELECT FROM MyTable INTO MyObjectVariables`