The sqlparameters tag has no wiki summary.
0
votes
1answer
65 views
Delete multiple rows in Entity Framework
I am trying to delete multiple rows in EF5 and I'm using the following code sample
string TestId = "12,23";
Context.Database.ExecuteSqlCommand("DELETE FROM TEST WHERE TESTID IN (@Params)", new ...
0
votes
3answers
42 views
SQL Parameters - where does expansion happens
I'm getting a little confused about using parameters with SQL queries, and seeing some things that I can't immediately explain, so I'm just after some background info at this point.
First, is there a ...
0
votes
2answers
54 views
SELECT query using SqlParameter isn't working
I'm working on a select query for sql in c#. Trying to use SqlParameter, but when I debug, I throw an exception:
Must declare scalar variable "@p1".
I'm passing values in via textbox to ...
3
votes
4answers
90 views
why we use “@” while inserting or updating or deleting data in sql table
I just want to know why we use "@" while inserting or updating or deleting data in sql table, as I used @name like below.
cmd.Parameters.Add(new SqlParameter("@fname", txtfname.Text));
0
votes
3answers
78 views
Syntax Error on a Sql Parametrized update command - c#
It's my first SQL Parametrized update command in c# and i have a syntax error when i exectued my update.
Here is my code :
string maRequete = "UPDATE " + strNomTable + " set "
+ "evetype = ...
0
votes
1answer
76 views
Sql Parameters and No command text is defined for the command object error
I would like to create my first SQL Parameters command with c#, and i have an error : "No command text is defined for the commande object"
Here is my code :
string maRequete = "UPDATE " + ...
1
vote
1answer
45 views
add list of sqlparameters to sqldatasource update
Im having trouble trying to create and set some sqlupdate parameters, my code below will hopefully be self explaniatory.
vis studio is not happy with my PArams being in the datasource at the mo
...
1
vote
1answer
59 views
DB2 Parameter binding for literal comparisons
I've got SQL for DB2 of the following abbreviated format:
Select ...
From ...
Where ... ((COL1 IS NULL) And ('' = ?)) ...
Order By ...
The rough purpose of this SQL is to return Null records if the ...
1
vote
3answers
49 views
Is there any way to reduce this ado.net code?
I need reduce significantly this code, is there any way to create a sql parameter describing its direction?
Here is the code:
Dim Oparam1 As SqlParameter = New SqlParameter("@ROJO", ...
0
votes
1answer
405 views
The SqlParameter is already contained by another SqlParameterCollection
I'm using EF DbContext SqlQuery to get a list of paged objects using PagedList (https://github.com/TroyGoode/PagedList) and I'm getting the following error:
"The SqlParameter is already contained by ...
0
votes
1answer
94 views
Run reports/send emails from a list of parameters?
I've run into a problem that, although I feel in my gut there is a 'simple' resolution, I'm not getting anywhere with it! The reports I'm running are using a dataset that includes a username that I ...
0
votes
2answers
132 views
sql query to get a scheduled report to run for that curent month only
I have an SSRS 2005 report that has a dataset for to an Oracle database. The report that i have essentially just pulls all data back from an audit log. This report works perfectly fine and i have ...
0
votes
0answers
23 views
Effects of Unused SqlCommand Parameters
I've looked for an answer to this and found something similar here, but it doesn't exactly address what I'm trying to figure out.
Is there any harm in adding all parameters a command will use (even ...
2
votes
2answers
39 views
Difference between the both parameter assignment
actually I have a doubt, so please clear it. I have 2 line do the same work, see below
1. cmd.Parameters.AddWithValue("@UserName",objBELUserDetails.UserName);
2. ...
1
vote
1answer
210 views
Stored Procedures, ExecuteScalar and Parametes
I have a stored procedure that I call like this:
string proc = "SpCreate '00111', 3";
using (SqlCommand command = new SqlCommand(proc, conn))
{
command.CommandType = CommandType.Text;
...
0
votes
2answers
221 views
Pass a SQL condition as a OleDb parameter
I have following code:
Dim executedCmd As OleDb.OleDbCommand = m_dbMgr.GetCommand()
executedCmd.CommandText = "select * from [Parameters] where "
Dim SQLcondition As String = String.Empty
For i As ...
-1
votes
2answers
91 views
SqlCommand parameters are not substituting correctly [closed]
private SqlCommand createSQLQuery(SqlCommand command)
{
string[] allTheseWords;
if (textBoxAllTheseWords.Text.Length > 0)
{
allTheseWords = ...
-1
votes
1answer
207 views
an SQL Search query using more than one condition
my problem is that , i made a child form for searching , but i have problem in sql query and parameters , my code is
SqlConnection sc = new SqlConnection(
"Data Source=MOHAMMED-PC;Initial ...
0
votes
2answers
333 views
C# Sqlparameter add
i have a class for my sql duety, and have problem for my
how could i do something like this
SqlParameter storedparam = new SqlParameter();
SqlParameter param1 = new SqlParameter("@userid", ...
2
votes
2answers
105 views
SQL Parameters with Like Terms in .Net
I have a pretty complex query and was fixing my like terms (which I have as a separate db table and load them into my search query), but when I parameterize it, my query gives different results.
So ...
2
votes
2answers
181 views
Adding SQL Parameters in C#
What is the difference between:
myCommand.Parameters.AddWithValue("search", "% " + myValue + " %");
and:
myCommand.Parameters.AddWithValue("@search", "% " + myValue + " %");
The difference above ...
1
vote
3answers
758 views
Best method of assigning NULL value to SqlParameter
I have a number of optional input parameters I am using in a C# class method. Since the optional syntax creates a value of '0' when the parameter is not used, the SQL insert command I call in the ...
0
votes
5answers
205 views
Avoid SQL Injections on query with tablename [duplicate]
Possible Duplicate:
Sanitize table/column name in Dynamic SQL in .NET? (Prevent SQL injection attacks)
I have a query like so:
"SELECT * FROM MyTable_" + myID + " WHERE variable = ...
1
vote
2answers
759 views
Difference between SqlParameter.Add and AddWithValue [duplicate]
Possible Duplicate:
Difference between Parameters.Add and Parameters.AddWithValue
From MSDN code, what is the difference between these two:
SqlCommand command = new ...
0
votes
2answers
215 views
C# and SQL parameters to prevent injections
I am wondering how (in my code below), that I make sure that dataID is a text (or varchar or int) in the parameter passing below?
public T ExecuteQuery<T>(Func<IDataReader, T> getResult, ...
0
votes
2answers
156 views
Unrecognized escape sequence when using a path as a SQL parameter
I am trying to store a string or nvarchar(500) in SQL. When I pass a full file path as a string parameter, there is an error unrecognized escape sequence.
Since path is not an usual param that this ...
0
votes
2answers
665 views
SqlCommand stored procedure without a named parameter
I've written a query parser that should create a SqlCommand and execute a stored procedure. The query for the stored procedure can come in many forms, including this one:
exec ...
0
votes
1answer
657 views
Dynamic parameters for sql query with “IN” operator
I have an ASP.NET website (c#) and in the code-behind I want to use the IN operator in SQL http://www.w3schools.com/sql/sql_in.asp to get data from my database.
The syntax is:
SELECT column_name(s)
...
0
votes
2answers
127 views
SqlParameter and ExecuteNonQuery causing unrepeatable time outs
I recently inherited some code that is having occasional time-out issues. I am mostly familiar with ORM's, so I am having trouble determining if anything is wrong in this code. When it does not time ...
0
votes
2answers
2k views
how to store only time in sql server when object data type is DateTime in c#
my objects WDst,WDet,SATst,SATet are DATETIME class objects which contains value of time from the text boxes.
all the start time and end time parameters in my SP are of dATA type Time(7)
how can i ...
-2
votes
2answers
516 views
Why a SqlParameter does not get value?
I am trying to initialize the value of a SqlParameter with a string. but why does it not get the value ?
This is what I tried:
int loadChart(string status)
{
connect();
...
0
votes
2answers
648 views
Passing Integer values to SqlParameter in .net
i want to pass integer value to the SqlParameter which is executing an SqlDataReader, but when i pass integer value it says, the Parameter is not supplied, below is my code:
Common SqlDataReader ...
1
vote
1answer
427 views
SQLParameter of XML type with whitespace elements, loses the whitespace?
I've got a problem with SQLParameter when I try to use one to store into a column of XML type. I am creating the parameter of SqlDbType.Xml. It appears that any XML Elements that are only white space ...
1
vote
1answer
402 views
Entity Framework. ExecuteStoreQuery Error converting data type varchar to real
I'm trying to execute a story query with Entity Framework.
I've been trying this for ages. The data type I'm passing in starts off as double. I then found that real in SQL was a single, so I convert ...
1
vote
2answers
612 views
WCF from Data Access Layer
I have a problem i am struggling to create a WCF Service Application form this Data Access Layer :
public class DataAccess
{
private SqlConnection connection = new SqlConnection("Data ...
0
votes
1answer
439 views
Procedure or function 'AddUpdateContactDetails' expects parameter '@Id', which was not supplied
I have my method
using (var helper = new DbHelper())
{
_commandText = "AddUpdateContactDetails";
var parameter = new[]
{
...
1
vote
1answer
571 views
VB.Net IIf function in adding SqlParameter
I am rewriting this long INSERT statement and parameters used to look like this:
cmd.Parameters.AddWithValue("@Website", General.fnSQLNullValues(tWebsite.Text))
Where General.fnSQLNullValues is ...
2
votes
2answers
201 views
The parameterized query is truncated and parameters are lost
I have a piece of code:
command.Parameters.Clear();
command.Parameters.Add(ownerUserIDParam);
command.Parameters.Add(buddyUserIDParam);
command.Parameters.Add(timestampParam);
...
3
votes
4answers
4k views
Return value from OleDbCommand
sqlQuery = "SELECT [ID] from [users] WHERE CallerName=@CallerName";
OleDbConnection conn = new OleDbConnection(connectionString);
conn.Open();
cmd = new OleDbCommand(sqlQuery, conn);
cmd.CommandText ...
0
votes
3answers
489 views
SqlCommand with parameters as a string
I have an application I need to create which, given some user input in the form of CSV, needs to parse and generate this CSV into multiple formats. One of these formats is a series of SQL INSERT ...
1
vote
2answers
1k views
Procedure expects a parameter which was not supplied
Towards the end of my code I am calling a stored procedure which updates a table based on the parameters passed by my page. I get the following error:
Procedure or function ...
0
votes
6answers
3k views
Create SQL parameters programmatically
Another annoying one for me but probably something simple.
I have a number of possible where clauses for a query based on user input, my question is how can I add these programmatically?
For ...
1
vote
1answer
2k views
Stored procedure parameter with XML query in MSSQL gives “argument must be string literal”
I'm trying to query a table with a column which is xml data with the query and value functions. When using regular string literals it's all okay, but if I put that in a stored procedure and try to use ...
0
votes
5answers
317 views
how to get the full sql query including parameters
I have recently leaped into parametrized queries in SQL. I am now getting a complaint about a date when executing the query
The DateTime represented by the string is not supported in calendar ...
4
votes
3answers
1k views
Output parameter issue in sql server and c#
Why if I have this stored procedure created with an output parameter, I'm getting the following error:
sp_DTS_InsertLSRBatch expects parameter @ErrorMsg which was not
supplied
Stored procedure ...
1
vote
3answers
777 views
Is there a better way to call a Stored Procedure with SqlParameters in VB?
Anyone know of a better way to create and initialize SqlParameters in VB.NET? Using 3 lines per variable seems quite excessive. Unfortunately the constructors for this class are rather ridiculous, so ...
6
votes
5answers
1k views
SqlCommand Parameters size confusion
I have the following line of code:
sqlcommand.Parameters.Add("@LinkID", SqlDbType.Int, 4).Value = linkID;
But, I'm slightly confused about the use of size. Is this saying that its 4 bytes in size? ...
-1
votes
2answers
102 views
SQL OutParameter Not Working
private static SqlParameter AddNewParameterToCommand(SqlCommand command,
string name, object value, bool isOutputParameter)
{
SqlParameter parm = new SqlParameter();
...
0
votes
1answer
900 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
123 views
WebMatrix / WebPages / SQL Compact - Named SQL Parameters
How do you add named SQL Parameters in WebPages Framework?
var db = Database.Open("database");
var stories = db.Query("select * from story where category = @1", 545433);
I only see parameters such ...
