Tagged Questions
The sqlparameters tag has no wiki summary.
5
votes
2answers
516 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 = ...
5
votes
3answers
267 views
ASP.net user data getting crosses between users accessing objects
This is kind of a weird one. I'm looking for ideas on how to ask the right question as much as I am an actual solution.
I've got a website and we just had a huge jump in traffic. Now all of the ...
4
votes
3answers
298 views
Why is the decimal SqlParameter getting mangled?
I'm sending a decimal value to a sproc in the following way:
SqlParameter meh = new SqlParameter("Foo", SqlDbType.Decimal);
meh.Value = "0.00001";
meh.Precision = ((System.Byte)(12));
meh.Scale = ...
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
827 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 ...
4
votes
1answer
443 views
How does SqlCommand (.NET) sanitize parameters?
Using SqlParameters is a recommended method to prevent SQL Injection in your database queries. Where can I find the code/function that internally sanitizes these parameters? I'd like to re-use this ...
2
votes
1answer
52 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 = ...
2
votes
2answers
40 views
ASP.NET What reference am I missing for Parameter Direction and SQLDBType
Hey just wondering what references I need to add to my VS2008 Project to get the following working
Name ParameterDirection is not declared.
Name SqlDbType is not declared
Thanks
2
votes
2answers
511 views
How do I use ADO Parameters at run time in Delphi 2006?
I have been banging my head against the desk with this. I have a simple table with 2 columns, like so:
CREATE TABLE [dbo].[MiscInitializers](
[PKey] [int] IDENTITY(1,1) NOT NULL,
[Value] [text] ...
1
vote
2answers
47 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
3answers
312 views
SQL: Incorrect syntax near
I used to have this one
Dt = MyMod.GetDataTable("SELECT TOP " & QuestionsPerCats(i) & " * From Questions WHERE CategoriesID ='" & Cats(i) & "' ORDER BY NEWID()")
but now i decided ...
1
vote
1answer
91 views
Why am I getting an error with my parameterized ADO query?
Dim txtFName As TextBox = CType(Wizard1.FindControl("txtFName"), TextBox)
Dim txtLName As TextBox = CType(Wizard1.FindControl("txtLName"), TextBox)
Dim MyDbConnection As New ...
1
vote
1answer
740 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 ...
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
42 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
0answers
42 views
Forwarding sql parameter in hidden field and accessing from next page using Interchange
I want the value of [s-param username] on the next page when the form gets submitted.
How to put that value in hidden field and use its value on next page outofstock_wish_submit.html.
This page is ...
0
votes
1answer
31 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 ...
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
1answer
39 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
199 views
SqlDatasource select parameters
Here is my sql datasource details
<asp:SqlDataSource ID="dsMoodleQuiz" runat="server"
ConnectionString="<%$ ConnectionStrings:OnlineMeetingConnectionString %>"
...
0
votes
2answers
71 views
Any way to pass a SqlParameter from one class to another?
I have a class, LogRequest, which contains parameters (members) for an object.
This object is turned to an sql query using another class, DataAccess.
And lastly, I have the class Search which run the ...
0
votes
0answers
71 views
C#.Net SqlParameterCollection To Sql String ready for sp_execsql
Can anyone help me to convert SqlParameterCollection to a string that is ready to be executed on sqlserver without using SqlParameters?
This is actually stupid. But the system I need to write code ...
0
votes
1answer
43 views
Sql paramters appear to not add in the single quote for strings(commit transaction issue)
I wasn't sure exactly how to phrase the question Title.
I have this block of code that sets up my sql parameters for a stored proc that does an insert.
Dim sproc As StoredProcedure = New ...
0
votes
2answers
53 views
Updating the database using parameters in .net
Which one of these two ways would be more recommended to update a database with a given query string:
Option 1:
Dim query As String = "INSERT INTO employee VALUES (@Name, @Age)"
Dim command As New ...
0
votes
4answers
246 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
878 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
2answers
73 views
How do I get around this common SQL problem
Haven't come across this in ages and when I searched for the solution I couldn't find one. I think its called overloading in SQL. Basically when I have "" (an empty string) for any parameter in this ...
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 ...
0
votes
1answer
345 views
Having multiple values assigned to a single ADO.Net SqlClient parameter
I wish to run an SQL select statement similar to this
SELECT * FROM CatalogueItems WHERE id IN (1,10,15,20);
using ADO.Net SqlClient style @name parameters. I've tried using a stored SQL strings
...
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)
{
...
0
votes
2answers
433 views
How to pass default keyword for table valued function call in ADO.NET
So here's the deal. In our database, we wrap most of our reads (i.e. select statements) in table valued functions for purposes of security and modularity. So I've got a TVF which defines one or more ...
0
votes
1answer
160 views
How test SqlParameter for equality
Using NUnit and NMock2 I was not able to compare what I thought were the same SqlParameters:
SqlParameter param1 = new SqlParameter("@Id", 1);
SqlParameter param2 = new SqlParameter("@Id", 1);
...
0
votes
1answer
630 views
Setting SqlDataSource SelectParameters from form text box
I am trying to use a text box input as a SqlParameter but it only goes into DataSelecting when the page first loads. Not after the from is submitted.
Here is the code on the aspx page.
...
0
votes
1answer
108 views
Microsoft Access Parameter Query Fails Occasionally
I have a query that, basically, says this:
SELECT DISTINCT [DB_ID]
FROM [TableX]
WHERE ([ForeignKey]=@ForeignKey);
Once I have this, I return the first DB_ID (there should be only one).
The ...
-1
votes
2answers
52 views
SQL OutParameter Not Working
private static SqlParameter AddNewParameterToCommand(SqlCommand command,
string name, object value, bool isOutputParameter)
{
SqlParameter parm = new SqlParameter();
...
-2
votes
1answer
87 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 += " ...