Tagged Questions

A Prepared Statement (or parameterized statement) is a precompiled SQL statement that serves to improve performance and mitigate SQL injection attacks. Prepared statements are used in many popular Relational Database Management Systems.

learn more… | top users | synonyms (2)

39
votes
13answers
42k views

PreparedStatement IN clause alternatives?

What are the best workarounds for using a SQL IN clause with instances of java.sql.PreparedStatement, which is not supported for multiple values due to SQL injection attack security issues: One ? ...
14
votes
6answers
2k views

When *not* to use prepared statements?

I'm re-engineering a PHP-driven web site which uses a minimal database. The original version used "pseudo-prepared-statements" (PHP functions which did quoting and parameter replacement) to prevent ...
13
votes
3answers
401 views

How to deal with (maybe) null values in a PreparedStatement?

The statement is SELECT * FROM tableA WHERE x = ? and the parameter is inserted via java.sql.PreparedStatement 'stmt' stmt.setString(1, y); // y may be null If y is null, the statement returns ...
13
votes
2answers
7k views

Get query from java.sql.PreparedStatement

In my code I am using java.sql.PreparedStatement. I then execute the setString() method to populate the wildcards of the prepared statement. Is there a way for me to retrieve (and print out) the ...
12
votes
6answers
456 views

ODBC prepared statements in PHP

I'm trying to use odbc_prepare and odbc_execute in PHP as follows: $pstmt=odbc_prepare($odb_con,"select * from configured where param_name='?'"); $res=odbc_execute($pstmt,array('version')); ...
10
votes
4answers
6k views

How can I get the SQL of a PreparedStatement?

I have a general Java method with the following method signature: private static ResultSet runSQLResultSet(String sql, Object... queryParams) It opens a connection, builds a PreparedStatement using ...
10
votes
4answers
6k views

Php PDO::bindParam data types.. how does it work?

im wondering what the declaration of the data type in the bind parameter (or value) is used for... I mean, i thougth that if i define a param like int, PDO::PARAM_INT, the param must be converted in ...
10
votes
5answers
2k views

PreparedStatements and performance

So I keep hearing that PreparedStatements are good for performance. We have a Java application in which we use the regular 'Statement' more than we use the 'PreparedStatement'. While trying to move ...
10
votes
5answers
4k views

MySQL Prepared statements with a variable size variable list

How would you write a prepared MySQL statement in PHP that takes a differing number of arguments each time. An example such query is: SELECT age, name FROM people WHERE id IN (12, 45, 65, 33) The IN ...
9
votes
5answers
306 views

Does using preparedStatement mean there will not be any SQL Injection?

I have read that to prevent SQL Injection one must use PreparedStatement. Does that mean if i am using perparedStatement then no one can perform SQL Injection in any of my page? Is it foolproof ...
9
votes
5answers
4k views

Does Python support MySQL prepared statements?

I worked on a PHP project earlier where prepared statements made the SELECT queries 20% faster. I'm wondering if it works on Python? I can't seem to find anything that specifically says it does or ...
9
votes
7answers
8k views

Prepared Statement vs. Stored Procedure

If you are using php5 and mysql5, is there a substantial advantage to using stored procs over prepared statements? ( i read somewhere you may not get substantial performance gains from mysql5 stored ...
8
votes
1answer
83 views

Are there any issues with always preparing SQL statements with PHP?

Is there any issue with always preparing SQL statements with PHP instead of executing them directly? Not sure if database system matters, but it's DB2 on System i.
8
votes
3answers
234 views

Are dynamic mysql queries with sql escaping just as secure as prepared statements?

I have an application which would greatly benefit by using dynamic mysql queries in combination with mysql (mysqli) real escape string. If I ran all data received from the user through mysql real ...
8
votes
2answers
6k views

Reusing a PreparedStatement multiple times

in the case of using PreparedStatement with a single common connection without any pool, can I recreate an instance for every dml/sql operation mantaining the power of prepared statements? I mean: ...
8
votes
5answers
1k views

Should I use prepared statements for MySQL in PHP PERFORMANCE-WISE?

I understand the security benefits of prepared statements in MySQL. No need to cover that topic here. I'm wondering about the performance aspect of them. Now, I know when a query using a prepared ...
8
votes
2answers
2k views

Use of PDO in classes

I have a few classes that perform some MySQL queries and prepared statements. However, I am lost in how to incorporate my PDO object within those classes. For example, I want to do something like ...
8
votes
5answers
407 views

Are there downsides to using prepared statements?

I've been reading a lot about prepared statements and in everything I've read, no one talks about the downsides of using them. Therefore, I'm wondering if there are any "there be dragons" spots that ...
8
votes
3answers
4k views

Logging PreparedStatements in Java

One thing that always been a pain is to log SQL (JDBC) errors when you have a PreparedStatement instead of the query itself. You always end up with messages like: 2008-10-20 09:19:48,114 ERROR ...
7
votes
3answers
111 views

What does this mean?

I found this in some code examples while googling : $sql = 'INSERT INTO users (username,passwordHash) VALUES (?,?)'; it's new to me, but I would guess that it a substitution method and equivalent ...
7
votes
4answers
419 views

PreparedStatement with list of parameters in a IN clause

How to set value for in clause in a preparedStatement in JDBC while executing a query. Example: connection.prepareStatement("Select * from test where field in (?)"); If this in-clause can hold ...
7
votes
4answers
3k views

SQL injections with prepared statements?

If I remember correctly, I think Jeff has mentioned in the Stack Overflow podcast a possible weakness in SQL prepared statements. I'm wondering what kind(s) of weakness(es) did he refer to? Was it ...
7
votes
4answers
10k views

How do I use prepared statements in SQlite in Android?

How do I use prepared statements in SQlite in Android?
6
votes
2answers
107 views

better way of using a single parameter multiple times in c#

I'm new in using prepared statements for querying data from the database and I'm experiencing problems implementing parameters for c# specifically OracleParameters. So let's say I have the following ...
6
votes
2answers
84 views

How can NULL and regular values be handled without using different prepared statements?

Consider this simple method: public ResultSet getByOwnerId(final Connection connection, final Integer id) throws SQLException { PreparedStatement statement = connection.prepareStatement("SELECT * ...
6
votes
1answer
175 views

best way to implement a sql statement binding in C++

Ok so I am writing a DB wrapper in c++0x, the API is in C. I have preprepared statements which I can bind at runtime. I would like to bind and execute the statement in 1 function call to the ...
6
votes
4answers
761 views

Java PreparedStatement using two single quotes for empty string parameter

I am using a PreparedStatement with sql such as: String sql = "insert into foo (a,b,c) values (?,?,?)"; ps = conn.prepareStatement(sql); ps.setString(psIndex++, a); ps.setString(psIndex++, b); ...
6
votes
3answers
319 views

Does the preparedStatement avoid SQL injection?

I have read and tried to inject vulnerable sql queries to my application. It is not safe enough. I am simply using the Statement Connection for database validations and other insertion operations. Is ...
6
votes
4answers
274 views

Does executing a statement always take in memory for the result set?

I was told by a colleague that executing an SQL statement always puts the data into RAM/swap by the database server. Thus it is not practical to select large result sets. I thought that such code my ...
6
votes
3answers
722 views

How do I set a full date & time sql using java, and not just the date?

I am trying to set a timestamp in my database using java, however in my table all I get is the date, and no time (i.e., looks like "2010-09-09 00:00:00"). I am using a datetime field on my mysql ...
6
votes
3answers
294 views

Does prepared statement prevent SQL-Injection here

The code below is from SAMATE Reference Dataset. I used it to test a static analysis tool. As you can see the code should prevent SQL-Injection both by using a sanitization method as well as using a ...
6
votes
2answers
2k views

PreparedStatement and setTimestamp in oracle jdbc

I am using PreparedStatement with Timestamp in where clause: PreparedStatement s=c.prepareStatement("select value,utctimestamp from t where utctimestamp>=? and utctimestamp<?"); ...
6
votes
4answers
579 views

Shouldn't prepared statements be much faster?

$s = explode (" ", microtime()); $s = $s[0]+$s[1]; $con = mysqli_connect ('localhost', 'test', 'pass', 'db') or die('Err'); for ($i=0; $i<1000; $i++) { $stmt = $con -> prepare( " SELECT ...
6
votes
5answers
705 views

PHP PDO: how does re-preparing a statement affect performance

I'm writing a semi-simple database wrapper class and want to have a fetching method which would operate automagically: it should prepare each different statement only the first time around and just ...
6
votes
3answers
117 views

implementing a simple prepared query in PHP

I'm trying to create a very simple database abstraction, one part of it using prepared queries. Now, I have a function take a query string and an array of values like this: $query = "SELECT ...
6
votes
2answers
2k views

How can I print the SQL query executed after Perl's DBI fills in the placeholders?

I'm using Perl's DBI module. I prepare a statement using placeholders, then execute the query. Is it possible to print out the final query that was executed without manually escaping the parameters ...
6
votes
2answers
2k views

PreparedStatement setNull(..)

Java PreparedStatement provides a possibility to explicitely set a Null value. This possibility is: prepStmt.setNull(<n>, Types.VARCHAR) Are the semantics of this call the same as when using ...
6
votes
6answers
519 views

In JDBC, why do parameter indexes for prepared statements begin at 1 instead of 0?

Everywhere else in Java, anything with an index starts at 0. Is there a reason for the change here or is this just bad design?
6
votes
7answers
19k views

Empty string in not-null column in MySQL?

I used to use the standard mysql_connect(), mysql_query(), etc statements for doing MySQL stuff from PHP. Lately I've been switching over to using the wonderful MDB2 class. Along with it, I'm using ...
6
votes
2answers
3k views

Are Dynamic Prepared Statements Bad? (with php + mysqli)

I like the flexibility of Dynamic SQL and I like the security + improved performance of Prepared Statements. So what I really want is Dynamic Prepared Statements, which is troublesome to make because ...
5
votes
1answer
86 views

PHP: Prepared statements (newbie), just need to confirm this about SQL injection

I have long used the mysql_query() to do my stuff but now I am shifting to prepared statements for two reasons: performance and no sql injection possibility This is how I am using it: function ...
5
votes
2answers
367 views

What does pre-compiling a JDBC PreparedStatement do?

What does "precompiling" a statement do, because I have seen that if I write a prepared statement with a bad SQL syntax that compilation does not report any problem! So if precompiling a prepared ...
5
votes
3answers
582 views

Is mysql_real_escape_string() broken?

Some people believe that mysql_real_escape_string() has some flaws and cannot protect your query even when properly used. Bringing some fossilized articles as a proof. So, the question is: is ...
5
votes
1answer
724 views

SQLite: bind list of values to “WHERE col IN ( :PRM )”

all I want to do is send a query like SELECT * FROM table WHERE col IN (110, 130, 90); So I prepared the following statement SELECT * FROM table WHERE col IN (:LST); Then I use ...
5
votes
1answer
467 views

How to log values that Hibernate binds to prepared statements?

How can I make Hibernate log the values it binds to prepared statements? If I set property hibernate.show_sql=true I get following kind of logging: insert into tablename (field1, field2) values (?, ...
5
votes
2answers
208 views

Prepared Statements and JDBC Drivers

I have the below questions on Prepared Statements in Java. Is it beneficial to use Prepared Statements when the SQL Query does not have any Where clause ? Assume a simple query Select * from ...
5
votes
3answers
188 views

Is it expensive to hold on to PreparedStatements? (Java & JDBC)

I'm trying to figure out if it's efficient for me to cache all of my statements when I create my database connection or if I should only create those that are most used and create the others if/when ...
5
votes
4answers
288 views

Prepared statement. Can I miss out parameter?

I use queries like "UPDATE MAILSCH.MESSAGE " + "SET IDFOLDER=?, SUBJECT=?, CONTENT=?, CREATIONTIME=?, AD_FROM=?, AD_TO=?, STATUS=? " + "WHERE IDMESSAGE=?"; May I miss out ...
5
votes
3answers
2k views

Preparing a MySQL INSERT/UPDATE statement with DEFAULT values

Quoting MySQL INSERT manual - same goes for UPDATE: Use the keyword DEFAULT to set a column explicitly to its default value. This makes it easier to write INSERT statements that assign values to ...
5
votes
3answers
620 views

Are PHP MySQLi prepared queries with bound parameters secure?

Historically, I've always used mysql_real_escape_string() for all input derived from users that ends up touching the database. Now that I've completely converted over to MySQLi and I'm using ...

1 2 3 4 5 15