How can I generate a Parameter if I cannot retrieve the SqlDbType from
an item in a row of a DataSet?
Is it safe to just take the object I retrieve from the DataSet and take
the following constructor for the Parameter:
SqlParameter(string parameterName, object value)???
Regards
Stephan

Re: Generating an SqlParameter from a value in a DataSet by W

W
Tue Jan 31 11:51:05 CST 2006

Yep, that's 'safe'
"Stephan Zaubzer" <stephan.zaubzer@schendl.at> wrote in message
news:eoVrRfoJGHA.3944@tk2msftngp13.phx.gbl...
> How can I generate a Parameter if I cannot retrieve the SqlDbType from an
> item in a row of a DataSet?
> Is it safe to just take the object I retrieve from the DataSet and take
> the following constructor for the Parameter:
> SqlParameter(string parameterName, object value)???
> Regards
> Stephan