Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
616 views

SqlDbType enumeration mapping - C#

What value in the SqlDbType enumeration should I use for the numeric T-SQL data type?
1
vote
2answers
194 views

Convert SqlCommand Output to List<MyType>?

I am using an ADO.NET SqlCommand with a single SqlDbType.Structured parameter to send a table-valued parameter to a sproc. The sproc returns many rows, which I need to get into a strongly-Typed List ...
1
vote
1answer
1k views

How do i determine the SQLDBType of a variable to be added to a parameter?

How do I determine which SQLDBType to assign to a parameter depending on the input variable to store in the DB? Is there a GetType equivelant to test with? If IsNumeric(ParameterValue) Then ...
0
votes
1answer
120 views

Preparing a command with Structured Parameters

I have this ADO.NET command object and I can set some parameters and execute it successfully. _mergecommand.Parameters.Add(new SqlParameter("values", SqlDbType.Structured)); ...
0
votes
3answers
412 views

Validating a date to be within the SqlDbType.DateTime range

I want to validate a System.DateTime value before I add it as a parameter to my SqlCommand instance. The MSDN documentation for the SqlDbType enumeration says: Date and time data ranging in value ...
0
votes
2answers
161 views

SubSonic 2.x StoredProcedure parameter data types?

From what I can see, SubSonic 2.x stored procedure parameter data types can only be of type System.Data.DbType. Is there a quick way to add System.Data.SqlDbType so we can use ...
0
votes
2answers
994 views

Convert MSXML DOMDocument to be used as value for SqlDbType.Xml ADO.NET parameter

I have a stored procedure that accepts an xml parameter (SqlDbType.Xml) that is being called from some .NET/ ADO.NET code. I have tested this through a test harness using a System.XML.XMLReader to ...