Tagged Questions
The parameterized-query tag has no wiki summary.
4
votes
5answers
199 views
Fixing SQL injection forms in a big asp.net C# web application
I have to fix a project that is vulnerable to SQL injection.
All the forms in every page on the project do not use parametrized query but simply string query.
For example I have the search page, ...
4
votes
3answers
222 views
Error with simple Parameterized Query - Java/ SQL
Following on from one of my previous questions to do with method design I was advised to implemented my SQL queries as a parameterized query as opposed to a simple string.
I've never used ...
4
votes
2answers
223 views
The way PDO parametrized query works
PLEASE READ THE QUESTION CAREFULLY. It is not usual silly "my code doesn't work!!!" question.
When I run this code with intended error
try {
$sth = $dbh->prepare("SELECT id FROM users ...
3
votes
5answers
39 views
ExecuteNonQuery inside loop
I'm trying to insert a database record inside a loop in C#.
It works when I hard code the values like this:
string query3 = "INSERT INTO furniture (room_id,member_id) VALUES (222,333);";
...
3
votes
1answer
67 views
Parameter Delimiters
I have C# application we've been coding in ADO.NET. I've been using the IDbCommand, and IDbConnection interfaces to create cross-database code.
It's all worked wonderfully so far (across ...
3
votes
3answers
97 views
Is this a correct way to allow wildcard search for a user?
Given a textbox name for example, the user requirement wants to be able to do a wildcard search (such as contains, starts with, ends with).
Is it ok to accept the sql wildcard characters ('%' and ...
3
votes
4answers
442 views
How do Parameterized queries help against SQL Injection
How does a parameterized query helps against SQL INJECTION.
In query 1 and 2 both, the text from the textbox is inserted into the database. so what's the significance of the parameterized query here?
...
3
votes
2answers
462 views
Bulk Parameterized Inserts
I'm trying to switch some hard-coded queries to use parameterized inputs, but I've run into a problem: How do you format the input for parameterized bulk inserts?
Currently, the code looks like ...
3
votes
3answers
444 views
How do you specify 'DEFAULT' as a SQL parameter value in ADO.NET?
I have a parameterized SQL query targetted for SQL2005 which is dynamically created in code, so I used the ADO.NET SqlParameter class to add sql parameters to SqlCommand.
In the aforementioned SQL I ...
2
votes
1answer
178 views
error with SqlCe Parameters
I have made MANY parameterised queries in my time on this lovely planet, and none have thrown an error like this... WTFudge?!?!
ERROR:
There was an error parsing the query. [
Token line number = 1,
...
2
votes
1answer
170 views
parameterized query without preparing statement in PHP
Is there an API in MySQLi, PDO or in PHP that use parameterized query but not preparing it for recall later? I found it in ADO.NET when we dont call .Prepare() method of SQLParameter, but I didn't ...
2
votes
1answer
169 views
Preventing SQL Injection in C
I am writing a C application that takes some user input and does a few database queries. I am well aware of the risks here of SQL injection and wish to prevent it.
Ideally I would use parameterized ...
2
votes
3answers
169 views
Method Optimisation - C#
I've developed a method that allows me to pass in a table (string), array of columns (string) and array of values (object) through the parameters which I then use to create a parameterized query. ...
2
votes
1answer
827 views
Parameterized Oracle SQL query in Java?
I've been trying to figure out why the following code is not generating any data in my ResultSet:
String sql = "SELECT STUDENT FROM SCHOOL WHERE SCHOOL = ? ";
PreparedStatement prepStmt = ...
2
votes
1answer
590 views
LINQ to SQL: ExecuteQuery not working when performing a parameterized query
I have a weird problem with ExecuteQuery in that it isn't working when performing a parameterized query.
The following returns 1 record:
db.ExecuteQuery<Member>(@"SELECT *
...
2
votes
2answers
1k views
SqlCommand.Parameters.AddWithValue Not Returning Correct Results
I'll admit that I'm a bit of a newbie (though learning fast!) when it comes to using parameterized queries in C#, so I'm probably just overlooking something here, but I can't seem to figure out how to ...
2
votes
1answer
682 views
SQLServerCE Problem with parameterized queries from .NET
I am pulling the hair out of my head trying to figure this one out.
I can't make Parameterized queries to work in VB.Net, when I am using parameters.
From what I have found, using a parameter in a ...
1
vote
1answer
78 views
SPARQL parameterized queries
Good day! I apply rdflib for python. I have a question. How can I put variable into SPARQL's query ?
Instead of 'OSPF' in course:OSPF!
qres = g.query(
"""SELECT ?x ?z ?y
WHERE {
...
1
vote
2answers
74 views
Cannot get classic ADO parameterized text queries to work in legacy MFC app
I've begun maintaining an MFC desktop app that uses classic ADO. There's a database access dll that wraps the imported ADO which is used throughout the app. Stored procedures are used, but also there ...
1
vote
1answer
313 views
How to use LIKE operator with wildcards in parameterized query in MS-Access using c#
I am using MS Access database in my C# app, where I need to pass parameterized like query. I came around various documents saying we can use "*" or "?" as wildcards. But when i try to add it to my ...
1
vote
3answers
92 views
How do I pass guid in parameterised query?
My current best code is:
string delNonQuery = "DELETE FROM " + Settings.DataSource + " WHERE @keycolumn=@keyuid";
SqlCommand cmd = new SqlCommand(delNonQuery,readerConn);
SqlParameter kc = new ...
1
vote
2answers
139 views
How to iterate and dynamically parameterize JPQL queries?
I have a page with simple ID as a URL param. What I do now is run a query to return a number of associated entities that basically need to get iterated over: I need a schedule of games to be returned ...
1
vote
1answer
419 views
Passin Bit field parameters to stored procedure using Entity Framework 4.1
All,
I've been stuck on the following issue all day. I'm trying to make a parametrized stored procedure call that includes three bit field parameters. The exception I keep encountering is "Error ...
1
vote
1answer
175 views
Python sqlite3 parameterized drop table
I have a problem with dropping sqlite3 table in python. I am using standard sqlite3 module.
self.conn = sqlite3.connect(...)
sql = """ drop table ? """
self.conn.execute( sql, (u'table_name',) )
...
1
vote
5answers
266 views
How can I run a SQL Query with a list of String values using the “WHERE [columnname] IN [values]” format in ASP.NET?
I have a SQL query I'm running in an ASP.NET page. The final parsed SQL needs to contain a list of string values in the WHERE [columnname] IN [values] format. For example, the final query might look ...
1
vote
1answer
128 views
about parameterized query
Q:
Please , i want to ask ,how to perform a query(select statement) using a parametrized query in Informix database ,with a simple example.
thanks in advance.
EDIT:
i use
IfxConnection and ...
1
vote
2answers
159 views
basics of parameterized query
1.i have used parameterized query several time i know it help in preventing sql injection
but i was wondering if i can know what is basic logic working inside a parameterized query
to prevent sql ...
1
vote
1answer
327 views
How to get textbox value from inside html tag in asp.net with c sharp
I want to select data from SqlDataSource tag to gridview using TextBox1 value.how can i modify that ASP.net code behind file..plz give me solution ASAP.thankz....................
...
1
vote
2answers
2k views
Parameterized DB2 Query From .NET
I am attempting to run a parameterized query against a DB2 database from .NET using the Client Access ODBC Driver using the following code:
var db2Cmd = new OdbcCommand("INSERT INTO presnlats (LAT) ...
1
vote
2answers
225 views
How can I get the extrapolated version of a parameterized query?
I'm trying to update the database library that we use at work to use parameterized queries so that coworkers who are not very knowledgeable about SQL injection won't have to remember to escape input ...
1
vote
1answer
418 views
Subsonic 2.x MySQL CodingHorror
What’s wrong here? This is how I found on examples of Subsonic 2 CodingHorror and doesn't works :(
new CodingHorror().Execute("SELECT * FROM product WHERE IdProduct = @IdProduct", 1);
The error I ...
0
votes
0answers
35 views
php adodb error type mismatch on parameterized query
My code:
if (isset($_POST['submit'])){
$username = $_POST['username'];
$password = $_POST['password'];
$query = "select user_id from users where user_id = '?' and PWD = '?'";
$params ...
0
votes
2answers
88 views
Wrong number of parameters (parametrized query)
Q:
When i try to execute the following parametrized query:
INSERT INTO days (day,short,name,depcode,studycode,batchnum) values (?,?,?,?,?,?);SELECT SCOPE_IDENTITY();
through ...
0
votes
0answers
40 views
use the values from the dataset table and assign it to the next select table aa parameterised value?
i am writing code to select some data from a table and fill the dataset using dataadapter.fill method. Now i want to use the values from the dataset table and assign it to the next select table aa ...
0
votes
2answers
132 views
Parameterized SQL Values syntax issue
I'm not sure what the issue is but my code looks like:
function() {
string sqltext2;
sqltext2 = "INSERT into myTable";
SqlCommand myCommand2 = new SqlCommand(sqltext2, MyConnection2);
if (cond1) {
...
0
votes
2answers
74 views
How to retrieve a default row when a mysqli_stmt_fetch fails?
I've got a simple PHP script that pull a row from a MySQL database based on a URL GET parameter, just an int called, say, ID.
If the GET parameter were to be an invalid ID for the database, such as ...
0
votes
1answer
438 views
excel vba: pausing for parameterized SQL queries to complete?
I have a workbook where several of my data feeds pass a parameter back into the SQL query depending upon some dropdown menus/user actions. This keeps the workbook trim, improves calculation, etc - ...
0
votes
4answers
207 views
Disable all queries in SQL Server that don't use named parameters?
It seems that one could stop all threat of Sql injection once and for all by simply rejecting all queries that don't use named parameters. Any way to configure Sql server to do that? Or else any way ...
0
votes
1answer
140 views
What are parameterized queries explained in plain English?
Can anybody explain me in plain English what parametrized queries are and how to implement it in PHP for a MySQL database to avoid SQL injection?
0
votes
1answer
120 views
parameterized query issue
Q::
i have my own DLL (for the data access layer),,i use escaping characters technique to avoid the user input errors ,, but recently i decided to enhance my classes and using parametrized query to ...
0
votes
2answers
822 views
Parameterized Queries
I am currently learning parametrized queries as there are advantages to using them.
Could someone give some pointers by converting this block of code to a parametrized version?
Thanks.
...
0
votes
1answer
70 views
SQL Parameterization vs. Escaping
If your language/database of choice has a built-in function to escape user-input, (for instance, mysql_real_escape_string) what are the arguments for SQL parameterization? Is it possible that ...
0
votes
2answers
76 views
Suggestion needed for optimizing a MySQL query
I'm using parameterized queries with PHP I have the following two queries:
SELECT username,question_text
FROM questions,users
WHERE questions.question_id = 4 AND questions.user_id = users.user_id
...
0
votes
1answer
137 views
Prepared Statements and Stored Procs Used Together
I'm in the planning stages of a Microsoft ASP.NET / SQL Server 2008 based web application and In thinking about database design, I began to think about injection attacks and what strategies I should ...
0
votes
1answer
361 views
Pulling parameters from a datagridview C#.NET
I have what is undoubtedly a simple question, but I can't seem to find that answer anywhere. I am writing a C# Windows form application that contains a datagridview that I'm using to run a SQL UPDATE ...
0
votes
2answers
172 views
Can parameterized queries have output parameters?
In SQL Server is there a way to have an output parameter return the total number of records (for paging) in a parameterized query?
-1
votes
4answers
45 views
Can I bind a parameter to a PDO statement as a comparison operator?
Is this code
class opinion
{
private $dbh;
var $opinionid,$opinion,$note,$actorid,$dateposted;
var $isnew=FALSE;
function loadby($column,$value,$operator="="){
$dbh = new PDO(I ...