Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 Java 客户端调用 oracle 中的存储过程。
将长度约为 80 个字符的字符串从 Java 传递到过程参数时出现问题。
虽然它适用于较小的字符串。
抛出的错误是“
数值或数值错误:字符串缓冲区太小”
可能是什么原因?
检查您要将此 80 字符字符串传递到的过程中的 IN 参数。看起来您正在尝试将其分配给只能容纳较小字符串的参数。