Tagged Questions
4
votes
3answers
2k views
How to pass XML from C# to a stored procedure in SQL Server 2008?
I want to pass xml document to sql server stored procedure such as this:
CREATE PROCEDURE BookDetails_Insert (@xml xml)
I want compare some field data with other table data and if it is matching ...
4
votes
4answers
820 views
Is it possible to get the parsed text of a SqlCommand with SqlParameters?
What I am trying to do is create some arbitrary sql command with parameters, set the values and types of the parameters, and then return the parsed sql command - with parameters included. I will not ...
2
votes
1answer
51 views
SqlDbType - Asp.net
I am working on a social network, one of my procedures returns a VARCHAR output.
So this is what I wrote:
SqlParameter job1 = cmd2.Parameters.Add("@job", SqlDbType.VarChar);
job1.Direction = ...
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
0answers
35 views
Linq-to-SQL stored procedure and SqlParameters
I have Linq-to-SQL and a stored procedure (with generated .dbml file and usp calling like a method) and .NET.
So:
public IEnumerable<usp_Orders_Process_SelectResult> ...
0
votes
4answers
245 views
SQLServer INSERT getdate() function using parameters
What is the preferred method of adding the current date/time into an SQL Server table with INSERT Command and executenonquery? I'm expecting something like ...
cmd.Parameters.Add("@theDate", ...
0
votes
2answers
59 views
Is there an overload to add sqlparameters with name, type, value
When adding parameters to a SQLCommand, is there an overload that includes 'parameter name', 'type and 'value' otherwise i end up writing something like:
using cmd as new SQLCommand("SELECT x FROM y ...