Skip to content

Instantly share code, notes, and snippets.

@vcsjones
Created December 7, 2011 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vcsjones/1444744 to your computer and use it in GitHub Desktop.
Save vcsjones/1444744 to your computer and use it in GitHub Desktop.
OracleParameter throwing exception
OracleParameter paramString = new OracleParameter();
paramString.Value = OracleString.Null;
var sizeStr = paramString.Size; //barf
OracleParameter paramBinary = new OracleParameter();
paramBinary.Value = OracleBinary.Null;
var sizeBin = paramBinary.Size; //barf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment