ORA-01484: arrays can only be bound to PL/SQL statements
Cause: You tried to bind an array to a non-PL/SQL statement.
Action: None
ORA-01484: Arrays can only be bound to PL/SQL statements
该错误提示将数组绑定到SQL语句时发生,而不是用于PL/SQL。
官方解释
ORA-01484是将数组绑定错误,该消息指示您不能将数组绑定到SQL,而只能将数组绑定到PL/SQL。
常见案例
当我们尝试使用OCI函数中的OCIBindByName()将数组变量绑定到SQL语句时,可能会返回此错误消息。
正常处理方法及步骤
将数组仅绑定到PL/SQL语句,而不是SQL语句,从而避免出现此错误消息。