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.
6
votes
2answers
96 views
How to see PreparedStatement's SQL string? [duplicate]
When we create a PreparedStatement we use '?' chars to then be replaced by setted parameters.
How can we see the final SQL string after these parameters are set?
2
votes
1answer
64 views
copying parameters from one PreparedStatement to another
I create a new PreparedStatement like this:
PreparedStatement newPs = origPrepStatement.getConnection().prepareStatement("EXPLAIN " + sql);
origPrepStatement is also Preparedstatement and it ...
0
votes
3answers
37 views
Can't optimize this complexed SQL query
I have a pretty tricky SQL query that takes a long time due to the need to use AES_DECRYPT along with some other tricky circumstances. First, here is the query:
SELECT
CONVERT( AES_DECRYPT( email, ...
1
vote
1answer
37 views
Prepared statement fetches all the results in db, but not one I ask for
Trying to make my blog secure and learning prepared statements.
Although I set the variable, I still get all the entries from database. $escapedGet is real variable when I print it out. It's ...
0
votes
0answers
22 views
Setting mysqli_set_charset prepared statement POP PHP
How do I set mysqli_set_charset on a prepared statement in the framework POP PHP? (http://www.popphp.org/)
Cant find it in the documentation.
My code looks like this:
$db = ...
0
votes
2answers
88 views
Prepared statements vs. escaping strings in PHP SQLite3 [duplicate]
I'm working with SQLite3 in PHP.
A friend told me that I should prefer prepared statements, and I read this in many posts here on StackOverflow too. I want to understand the benefits of using ...
-1
votes
1answer
67 views
PDO isn't binding PostgreSQL query
I'm using PDO to develop an application with PostgreSQL.
The problem is that the binding functions as PDOStatement::bindValue and PDOStatement::bindParam aren't working at all.
I have the following ...
0
votes
1answer
247 views
PreparedStatementCallback; bad SQL grammar in JDBC Spring
I have an update method to update the content of a table based on a specific field and I am getting following exception.
Code is :
public void updateTaxoActive(String oldDesc, String description) {
...
-1
votes
3answers
102 views
PHP and mysqli: Select with multiple conditions using prepared statements
I'm working on some prepared statements using mysqli in a php file with a database running on InnoDB. Most of the statements are working pretty well, but I have a select statement with multiple ...
0
votes
1answer
34 views
bind_param character type for checkbox
Just wondering when using mysqli_stmt_bind_param for a checkbox value. Would the character type be integer 'i' for this? - as the checkbox sends off either a 1 or a 0. Asking just to confirm.
0
votes
1answer
34 views
creating a function to do standard DELETEs using prepared statments and php
I am currently going through a nettuts.com tutorial on building a twitter clone and there they have a function for deleting rows from a database and they are using the query method but i tried ...
0
votes
1answer
42 views
What is a 'double' string type?
Regarding the "types" parameter for the function mysqli_stmt_bind_param. What is a "double" string? It is written in the table in the php manual here
0
votes
2answers
32 views
The difference between emulated prepares and direct prepare calls?
Is database still vulnerable to SQL injection with prepare statements, like in the following example (I'm using PDO and php version 5.3):
$unsafe = $_POST['user_input'];
$stmt = ...
0
votes
2answers
80 views
MySQLI Prepared Statement Error Call to a member function bind_param() on a non-object [closed]
I have the following mysqli prepared code.
$stmt = $mysqli->prepare("SELECT messages.message_id, messages.listing_id, messages.user_id, messages.message_title, messages.message_posted_by, ...
3
votes
1answer
223 views
Prepared statement with dynamic where clause
I have a search page with multiple search criteria
Employee Name
Employee Id
Date of joining
Department
etc
User can provide one or more search criteria. I need to query database to get the ...
0
votes
4answers
73 views
can i write my Sql query in this way
I am wondering can i insert table name in this format
String update = "UPDATE ? SET Status = ? WHERE Name = ?";
stmt.setString(1,tableName);
stmt.setString(2,status);
stmt.setString(3,name);
same ...
0
votes
0answers
332 views
How to return resultset from MySQL Stored Procedure using prepared statement?
DELIMITER $$
CREATE PROCEDURE List_IL()
BEGIN
DECLARE Project_Number_val VARCHAR( 255 );
DECLARE Temp_List_val VARCHAR(255);
DECLARE Project_List_val VARCHAR(255);
DECLARE FoundCount INT;
...
19
votes
3answers
580 views
Oracle prepared statement hangs
There is next partitioned table:
CREATE TABLE "ERMB_LOG_TEST_BF"."OUT_SMS"(
"TRX_ID" NUMBER(19,0) NOT NULL ENABLE,
"CREATE_TS" TIMESTAMP (3) DEFAULT systimestamp NOT NULL ENABLE,
/* other ...
1
vote
2answers
78 views
Prepared statement update - performance improvement
I have a single oracle prepared statement in my application which will update the status of around 100,000 records in the table at one shot.
For Example:
UPDATE <TABLE NAME> SET ...
0
votes
0answers
36 views
mysqli prepared search loop
I currently have a php/mysql search script which builds an array from keywords entered, then for every keyword adds onto the sql statement ono the last one and its using the old mysql_ and sanitized ...
0
votes
2answers
25 views
PDO prepare statement parameters
I just started to learn PDO and i read that in prepare statements you can use named parameters and question marks parameter. So which should i use, or they are completely the same and is just the ...
0
votes
1answer
46 views
Syntax error trying to insert row when using “show” as field name
I have a table:
up_rel
> |--id--|--uid--|--pid--|--show--|
i am doing this insert sequence:
$icat_sth = $dbh->prepare("INSERT INTO product_category (name, parent) VALUES(:name, :parent)");
...
-1
votes
1answer
55 views
Feedback on my first prepared statement [closed]
I've just completed my first prepared statement, converted to using them for security reasons. I've tested it and it works however I am looking for feedback (constructive criticism welcomed) regarding ...
0
votes
3answers
83 views
Is this kind of PDO query protected against SQL injection? [duplicate]
First of all, yes, I've seen this Are PDO prepared statements sufficient to prevent SQL injection?, but it's not enough to answer my question, as I'm doing it differently.
Let's say I have code like ...
0
votes
2answers
76 views
PHP and MySQLi - Wrong query and no error [closed]
The following code executes a query with an error. The input data is clearly wrong. Even with these errors MySQLi doesn't report an error.
<?php
$mysqli = new MySQLi('hostname', 'username', ...
9
votes
1answer
245 views
Using Stored Function with C API & Prepared Statements
I am attempting to use a stored function with a prepared statement but not having any success.
MySQL prepares the statement but then does not execute it, no error is given, it just silently fails.
...
-1
votes
4answers
91 views
whats wrong with my UPDATE SQL Statement Java
String insert = "UPDATE PPN_WORKFLOW SET P1_F_Date = ?, SET P1_Completed = ?, SET C2_S_Date = ? WHERE ERF_No = ?";
stmt = conn.prepareStatement(insert);
stmt.setDate(1, date);
...
0
votes
2answers
196 views
passing null value in PreparedStatement setObject method gives exception
Do we have a solution for this?
my code is something like this:
preparedStatement.SetObject(i , MyArray);
Here , MyArray is an array of record fetched form a table. Now , whenever the above ...
2
votes
1answer
118 views
How can you disable result output for the mysql EXECUTE command in workbench
I'm trying to use a prepared statement in mysql workbench in a cursor. The cursor works on a very big data set so it is executed many times. Every time a new result is shown for the EXECUTE step. This ...
-1
votes
2answers
316 views
One preparedstatement for multiple tables Java
1) Can I use one prepared statement to pass data to multiple tables from java? where I am using JDBC driver.
try
{
conn = ac.getConnection();
String insert = "INSERT ...
0
votes
1answer
70 views
Error: Column does not exist
I have been able to link PostgreSQL to java. I have been able to display all the records in the table, however I unable to perform delete operation.
Here is my code:
con = ...
1
vote
0answers
50 views
PreparedStatement setBinaryStream in JPA
in JDBC I use this:
PreparedStatement pupd;
pupd.setBinaryStream(5, new ByteArrayInputStream(buffer, ofs, lgt), lgt);
How can I accomplish the same result using JPA?
This is a real time ...
0
votes
2answers
38 views
PDO Prepare literal
Let's say I have a very basic update query:
$sql = 'UPDATE `table` SET column = :value WHERE id = :id';
I prepare this with PDO and I can set the column "column" to any value. Good this works well.
...
1
vote
5answers
85 views
Update int column using a variable in php
I am using following query
$abilityPts = xxx;
$statement = $conn->prepare('UPDATE players SET ability = (ability + $abilityPts) WHERE id = :myPlayerId');
However it is giving mer error..
...
0
votes
0answers
175 views
php mysqli prepared statements stored procedures OUT parameter
I've got a question that involves the use of stored procedures in mysqli prepared statements.
The code snippet I'll show does work, I'd just like to know why.
The prepared statement calls a stored ...
0
votes
2answers
100 views
Prepared statements with MySQL?
I am having some trouble with, what I believe to by syntax, for prepared statements.
I have the following code
String query2="SELECT lname FROM school_student WHERE sid = ? ORDER BY sid;";
...
0
votes
3answers
129 views
How to use quotations in SQL statement with MySQLi Prepared Statements in PHP?
I am using prepared statements to perform a SELECT query to my database, however the nature of the SQL syntax is causing a problem with MySQLi.
When I attempt to prepare:
SELECT user_id FROM Users ...
1
vote
2answers
185 views
Using Java's JDBC PreparedStatement on a SQLite Database to query for NOT NULL
I'm new to PreparedStatement in Java, and I can't seem to figure out an optimal solution to my problem. I want to query for records in a table that are either NULL, or NOT NULL.
When reading ...
0
votes
2answers
63 views
MySqli prepare statement error when used for LIKE
I'm trying to make a prepared statement for a LIKE query using php's mysqli extension. But no matter what I try, I always get this error:
Fatal error: Problem preparing query (SELECT f.*,r.slug FROM ...
0
votes
1answer
103 views
How to check whether Prepared Statement has some batches or not, before executeBatch()?
I have a doubt related to Prepared Statement in Java as I don't know much about it.
I have a use case in which I have to use PreparedStatement. But I am just thinking before writing code that:
...
-1
votes
1answer
48 views
PHP : post using prepare, not working
I try to store form's data into a DB. I can't figure out why this code is not working... Nothing happens.
Thank you for your help.
Here is my code :
<?php
// Connexion à la base de données
try
{
...
0
votes
2answers
49 views
Postgres: PreparedStatement incorrectly identifying datatypes
I am having trouble getting this command to execute correctly. The first column of the table is an auto-incrementing integer, so I wish to start entering data at column 2. When I do the following:
...
0
votes
1answer
181 views
Java PreparedStatement Delete Query: Show Number of Rows Deleted?
I have a PreparedStatement with a MySQL query that deletes rows based on a timestamp criteria. Is it possible to pull out how many rows were deleted from that same delete prepared statement or would ...
0
votes
1answer
42 views
BatchUpdate using an Oracle view
I have a complex Oracle view which takes around ~ 2 - 3 seconds to execute.
I'm trying to insert values from the Oracle view into a table.
I'm using JdbcTemplate BatchUpdate() to insert multiple ...
0
votes
1answer
63 views
Where is prepared statement precompiled, in jvm or in db?
When reading across different posts a question came across the mind Where is prepared statement precompiled, in jvm or in db? And when does the process actually happen in a java class. Example Below ...
0
votes
1answer
49 views
How to get number of rows with fetchColumn and bindParam
Why does this not work
$sth = $pdo->prepare("SELECT * FROM tempusers WHERE tempusers.username = :username AND tempuser.email = :email AND password = :password");
...
1
vote
3answers
570 views
What is proper way to use PreparedStatementCreator of Spring JDBC?
As per my understanding the use of PreparedStatement in Java is we can use it multiple times.
But I have some confusion using PreparedStatementCreator of Spring JDBC.
For example consider following ...
0
votes
1answer
58 views
My update form won't update the previous data
I suppose there's a much cleaner way of doing it, but I'm trying to archieve that I can edit the data in a update form. The problem is that the update query isn't working. Could anyone please pinpoint ...
0
votes
2answers
102 views
Java assignment not working
I have a function which allows user's to log in to the system in a User class. Upon logging in - their forename and surname are retrieved from the databased and stored as private variables in the User ...
0
votes
1answer
144 views
Retrieving Oracle data using a SqlDataSource and a C# prepared statement
I'm attempting to write a prepared statement for retrieving data using a SqlDataSource, but cannot seem to compose a good SelectCommand statement (7th line below) to do this. Could someone please shed ...

