Oracle stored Procedure output parameter assignment exception: the type initializer for "Oracle.DataAccess.Types.OracleString" throws an exception.

Source: Internet
Author: User

Scene:

Wrote a stored procedure with a return parameter, which is normal on a different developer's machine. Other machines reported title errors. The depressing thing is that all callers are clients, there is no issue of version inconsistency that is said on the web.

Analysis:

Although the online post did not solve the problem at all, but still gave some Silk Road. Parameter value type problem. Also, I can also call the output parameter assignment statement (only if the result is not returned). I tried to oraclestring the type to Oracle, forcing a string to the CLR.

DICPARAOUT[KVP. Key] = (string) command. Parameters[0]. Value;

DICPARAOUT[KVP. Key] = (oraclestring) command.parameters[0]. Value;

Solve:

Take a try and try it. ToString (). It's done.

DICPARAOUT[KVP. Key] = command. Parameters[0]. Value.tostring ();

Reference Posts:

Http://www.cnblogs.com/keyrratuff/archive/2010/02/04/1663791.html

Oracle stored Procedure output parameter assignment exception: the type initializer for "Oracle.DataAccess.Types.OracleString" throws an exception.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.