-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oracle11g - OracleValueConverter - GetValue throws System.NullReferenceException #46
Comments
try running test: |
Pull request has been created |
epaulsen
added a commit
that referenced
this issue
Nov 6, 2020
Issue #46 - Fixing converting OracleString[], OracleDecimal[] to .NET native data types
Shipped in version 2.0.1 |
I think we can close this one. Thanks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I got System.NullReferenceException while I was trying to read PLSQLAssociativeArray output parameter.
in line 63, we will have System.NullReferenceException if valueType.GetProperty("IsNull", typeof(bool)) is null
var isNull = (bool)valueType.GetProperty("IsNull", typeof(bool))?.GetValue(value);
I discovered this when I tried to get value from OracleString[]
This was working in previous version
The text was updated successfully, but these errors were encountered: