Raw(16) Guid failed as Oracle Out Parameter
Posted: Mon 02 Aug 2010 07:26
We use Devart dotConnect for Oracle 5.70.152.0 and the entity model.
We defined a package procedure with an out RAW(16) Parameter.
The Designer created this part
And, of course, the function failed with: Specified cast is not valid. The Paramter value has the type byte[16].
Please fix this issue.
We defined a package procedure with an out RAW(16) Parameter.
The Designer created this part
Code: Select all
if (P_USERIDParameter.Value != null && !(P_USERIDParameter.Value is System.DBNull))
P_USERID = (global::System.Nullable)P_USERIDParameter.Value;
else
P_USERID = default(global::System.Nullable);Please fix this issue.