Tagged Questions

5
votes
2answers
599 views

SqlParameter with default value set to 0 doesn't work as expected

I was doing something like this: SqlParameter param = new SqlParameter("@Param", 0) { SqlDbType = SqlDbType.Int }; private void TestParam(SqlParameter param) { string test = ...
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
875 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
63 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
2answers
51 views

Issues with SqlParameter constructor vs object initializer

Given the following line of code: cmd.Parameters.Add(new SqlParameter("@displayId", SqlDbType.NVarChar).Value = customer.DisplayID); I receive the following error: The SqlParameterCollection only ...
1
vote
1answer
753 views

DbParameter IsNullable functionality?

I have not worked with parameters in ADO.Net very much. I'm writing a custom .Net data provider (modeled on SqlClient), and have to implement the IsNullable property in my parameter class, which ...
0
votes
1answer
75 views

SqlParameter returns null in Entity Framework SqlQuery

I am materializing entities through a stored procedure in Entity Framework Code-First. The Stored Procedure takes an int parameter and outputs both a selection of records and several output ...
0
votes
1answer
44 views

SqlCommand Parameters Clarification

I was told that if using SqlCommand in C# and if you were to add parameters to that command, that it will add security since it will protect against Sql Injection. I was wondering if this is in fact ...
0
votes
2answers
1k views

Can't solve “Sqlparameter is already contained by another SqlparameterCollection”

I am using 2 threads (from same class) in a windows service. I always getting the same error message: "The SqlParameter is already contained by another SqlParameterCollection. at ...
0
votes
5answers
4k views

how to pass sql parameter as null value in interger datatype variable?

how to pass sql parameter as null value in to integer data type variable ? StockBO sBO = new StockBO(); sBO.Mode = 2; if (ddcmpanyname.SelectedIndex != 0) { ...
-1
votes
2answers
59 views

SQL OutParameter Not Working

private static SqlParameter AddNewParameterToCommand(SqlCommand command, string name, object value, bool isOutputParameter) { SqlParameter parm = new SqlParameter(); ...
-2
votes
1answer
102 views

insert into sqlserver with sqlParameters in c#

void BtnConfirmClick(object sender, EventArgs e) { string first = txtFname.Text; string last = txtLname.Text; string query = "INSERT INTO customer (first, last)"; query += " ...