Optional Parameter Dataset default Value

  • Thread starter Thread starter mianiro
  • Start date Start date
M

mianiro

Im setting up a procedure with an optional dataset parameter in VB.net.
You must set a default value for optional parameters. Does anyone
know how to set the default value of a dataset to nothing? I tried
DBNull but that did not work. Any help would be appreciated! Thanks
 
know how to set the default value of a dataset to nothing? I tried

If I understood correctly:

....(Optional something As DataSet = Nothing)
 
Back
Top