Tagged Questions
0
votes
2answers
87 views
MYSQL - stored procedure and prepared staments handling quotes
From PHP I am using prepared statement ( by binding parameters) and sending data to the below stored procedures
CREATE PROCEDURE test_my_add_comment(in var_details text, in var_table_name ...
0
votes
0answers
131 views
Calling stored procedures multiple times from a prepared statement
This seems to be a Windows specific issue a few people have had, without a satisfactory outcome. I haven't tried the code on my Linux server yet.
When using a prepared statement to call a stored ...
0
votes
1answer
68 views
PHP Stored Procedures and Injection for 2013 [closed]
I've been learning PHP MySQL, and I love it. Before I launch my site, I want to make sure it's as secure as it can be against SQL injection. I'm verifying/sanitizing all inputs, and I'm using PDO ...
0
votes
0answers
21 views
How to create a query using parameters and use a cursor to iterate through the rows in mysqli inside a stored procedure
Ok, so i have a stored procedure to which i am going to pass the where clause and i need to form a query with it and run it and use a cursor to iterate through it. I looked up found something about ...
-1
votes
1answer
109 views
select all columns except one [duplicate]
I need to select all the columns from a table "ticket" except one column "depname"
The following prepared statement does not work as expected.
PREPARE stmt1 FROM 'SELECT ? from magon.ticket limit 2';
...
0
votes
0answers
30 views
using prepared statement inside if conidtion
How can I get the result of prepared statement execution inside if condition in MySQL stored procedure?
Here is what I want:
How can I perform this SQL by prepared statement
IF EXISTS (select `id` ...
0
votes
1answer
54 views
Makes sense to call stored procedure as prepared statement?
I have SQL Server stored procedure to insert or update some data (do some logic). I want to call it from .net application multiple times to insert/update many rows.
Does it make sense to call stored ...
0
votes
0answers
59 views
Dynamic SQL Procedure within function
I am trying to create a stored procedure that among other things, updates a table with information from other table:
UPDATE table1 T1, table2 T2
set T1.rank = T1.rank + T2.rank
T1.tags = ...
0
votes
0answers
392 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;
...
0
votes
0answers
206 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
0answers
24 views
How to return cursore from stored procedure
I want to return Cursore rst from below stored procedure. It is only printing 'number of rows fetched = 8'.
I want to access all 8 rows detail in my program.
delimiter //
CREATE PROCEDURE ...
-2
votes
1answer
122 views
How to store data in two tables
I want to store following data is mysql data base
How to write jdbc program for storing following data
I am having following table
message(messageid, message_heading ,message_data)
...
0
votes
1answer
196 views
How to pass stored procedure parameter into EXECUTE statement
CREATE OR REPLACE FUNCTION "Test"(character varying[],character varying[])
RETURNS refcursor AS
$BODY$
DECLARE
curr refcursor;
filter text;
counter integer;
BEGIN
counter = 1;
filter = '';
...
0
votes
1answer
238 views
mysql stored procedure, use column name as an argument
i have here a table of tapes with 3 fields:
Tapes
TapesID Title Qty
T1 BatDog 3
T2 UnderCat 2
T3 IronMouse 1
T4 Boys Zone ...
3
votes
3answers
337 views
PDO and MySQL stored procedure. Not returning out param
When using PDO, I should be able to select the param and echo it. All I get however is NULL. When I use Workbench, I can see it just fine.
Can anyone tell me why this is so?
CREATE PROCEDURE ...
-1
votes
2answers
59 views
how to insert 1 id and several items with prepared-statement?
i have an stored procedure in mysql like this:
SET @q1= CONCAT('INSERT INTO tblPermissionRole (IdRole , IdPermission) VALUES (p_IdRole', p_Permission, ')');
PREPARE stmt FROM @q1;
EXECUTE stmt;
...
3
votes
3answers
689 views
Insert query using prepared-statement in mysql?
I have an stored procedure like this:
SET @query = CONCAT('insert into tblcommodity (id , idname , count)values (',p1, p2,p3,')');
PREPARE stmt FROM @query;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
...
7
votes
2answers
812 views
Calling stored procedure with Out parameter using PDO
I've been using PDO for awhile now and am refactoring a project so that it uses stored procs instead of inline SQL. I am getting an error that I can't explain.I am using PHP version 5.3.5 and MySQL ...
2
votes
1answer
716 views
Mysql temporary variable assignment
I have a table like one Below.
CREATE TABLE People(PeopleId INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
Name VARCHAR(255),
Age INT);
INSERT INTO People(Name, ...
1
vote
2answers
68 views
Removing Parameters from where clause to display records
I have a real estate website where people can search property based on Location, Property Type and Builder.
I have a Table like below.
CREATE TABLE Project(ProjectId INT NOT NULL PRIMARY KEY ...
0
votes
4answers
162 views
Is a SQL Injection Possible using a Java PreparedStatement and a MySQL Stored Routine
Java:
PreparedStatement stmt = myConnection.prepareStatement("CALL myStoredRoutine(?, ?, ?)");
stmt.setString(1, a);
stmt.setString(2, b);
stmt.setString(3, c);
stmt.executeQuery();
If my stored ...
1
vote
1answer
214 views
MySQL: count number of rows returned by a procedure
I want to Insert the records returned by procedure in to temporary table in another procedure
I have a Procedure Like Below
call getName()
Now I want to Check whether the above procedure is ...
1
vote
2answers
61 views
Any point in using a prepared statement within a sanitized-input stored proc?
I'm not a DB expert, but I've inherited some of the responsibility for a fairly large production MySQL DB from a guy who seems to have been somewhat to severely incompetent but with the occasional ...
0
votes
1answer
543 views
Inserting values in temporary table in mysql Procedure
I have a procedure like below
DROP PROCEDURE IF EXISTS mp_search_result;
CREATE PROCEDURE mp_search_result()
BEGIN
CREATE TEMPORARY TABLE ...
2
votes
1answer
309 views
Getting results from a MySQL Stored Procedure in PHP5 using prepared statements
I'm developing a website using PHP5 and MySQL. I use the mysqlnd driver and I have a class that uses prepared statements to execute any queries I want.
I have a table where I store information about ...
0
votes
1answer
860 views
Stored procedure and prepared statement error
I am calling a stored procedure from my Java application and getting the following error while setting the input parameter.
1: Java method for calling the procedure:
public int callProc(String ...
0
votes
0answers
34 views
Page Exits Before Procedure is Executed
I have a PHP page which executes a Procedure in MYSQL Database.
I used mysqli api for calling the procedure in my page.
The procedure will perform insert operation by running 15 different queries ...
2
votes
1answer
263 views
Procedure terminating silently when executing prepared statement
Problem
I have a stored procedure:
CREATE PROCEDURE `ProblematicProcedure` (IN dbName varchar(50), IN tableId INT)
MODIFIES SQL DATA
BEGIN
DROP VIEW IF EXISTS v1;
DROP VIEW IF EXISTS ...
0
votes
1answer
86 views
mysql stored procedures and parameters
I have a stored procedure which selects from a certain table. This table gets passed to the procedure as a parameter.
SELECT * FROM ParamName
And all it tells me when I try to run it is ...
3
votes
3answers
331 views
mysql permanently prepared statements
i am looking to accelerate some queries using prepared statements on a high traffic site. what i don't think i'm understanding correctly is the benefit from using prepared statements unless they can ...
1
vote
1answer
185 views
EXECUTE in MySQL Stored Procedure gives syntax error
I'm new to MySQL and databases in general. I'm trying to create a MySQL stored procedure but keep getting a vague syntax error:
"you have an error in your SQL syntax; check the manual that ...
2
votes
0answers
200 views
Prepared Statements And Stored Procedures
I currentrly have to face this problem. Since the post is nearly 4 years old, is there a solution for this now?
Short summary:
In Qt, you can prepare and execute a statement for MySQL which calls a ...
0
votes
2answers
651 views
PREPARED STATEMENT in a WHILE loop
I have a table autos that has a column name, I want to check first 5 rows in the table and if name value is "toyota", in table mytable write "yes", else write "no".
I write stored procedure, but ...
0
votes
2answers
437 views
Unknown column in 'where clause' with stored procedure
I am using a stored procedure with a prepared statment to find rows from a string of email addresses.
It looks like this:
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE ...
1
vote
0answers
172 views
“Commands out of sync;” Prepared Stored Procedure Error
I seem to be having some trouble with running a 2nd prepared query after running a 1st prepared stored procedure. I understand this is because I can't buffer results in mySQL, but I'm not sure exactly ...
5
votes
3answers
744 views
Preventing sql injection - why should one escape the input if using prepared statements?
I am doing some research in web security, and the reviser of my article said:
"It should be clear that to avoid SQL Injection, the application should use prepared statements, stored procedures and ...
1
vote
2answers
310 views
mysql stored procedure oddity
I learned today through this section of the MySQL documentation that prepared statements cannot be performed in stored functions, but, as of MySQL version 5.0.13, they can be performed in stored ...
0
votes
1answer
116 views
What should we prefer to use Stored Proc or Prepared statements
I have recently started working on Databases. I know the basic difference between Stored Procedures and Prepared Statements. But can just brief me an idea that when we have to use which one. My ...
5
votes
2answers
1k views
stored procedures as queries: CallableStatement vs. PreparedStatement
PostgreSQL documentation recommends using a CallableStatement to call stored procedures.
In the case of a stored procedure that returns a rowset, what are the differences between using ...
1
vote
2answers
2k views
DIfference Between Stored Procedures and Prepared Statements..?
What is the difference between Stored Procedures and Prepared Statements... And which one is better and why...!! I was trying to google it but haven't got any better article...
0
votes
0answers
410 views
PHP PDO: nextRowset on multiple rowsets on a prepared statement
I have the PHP script below which uses PDO to prepare and call a MySQL stored procedure. The stored procedure returns 2 rowsets. The 1st contains 25 rows. The 2nd contains 1 row. I can't seem to get ...
2
votes
4answers
1k views
postgresql: nested insert
I have two tables. Lets say tblA and tblB.
I need to insert a row in tblA and use the returned id as a value to be inserted as one of the columns in tblB.
I tried finding out this in documentation ...
1
vote
2answers
2k views
How to use MySQLi Prepared Statements with Stored Procedures
I'm trying to learn more about MySQL and how to protect against SQL injections so my research has brought me to Prepared Statements which seems to be the way to go.
I'm also working on learning how ...
1
vote
1answer
1k views
SELECT-ing data from stored procedures
I have a complicated SELECT query that filters on a time range, and I want this time range (start and end dates) to be specifiable using user-supplied parameters. So I can use a stored procedure to ...
2
votes
3answers
2k views
How to get scalar result from prepared statement?
Is it possible to set the result from a prepared statement into a variable? I am trying to create the following stored procedure but it is failing:
ERROR 1064 (42000) at line 31: You have an ...
1
vote
1answer
255 views
Avoid MySQL multi-results from SP with Execute
i have an SP like
BEGIN
DECLARE ...
CREATE TEMPORARY TABLE tmptbl_found (...);
PREPARE find FROM" INSERT INTO tmptbl_found
(SELECT userid FROM
(
SELECT userid FROM ...
0
votes
1answer
1k views
How to call MySQL stored procedure by using prepared statements in PHP via mysqli?
Can someone provide a working example in which stored procedure returns a recordset and is called by using prepared statemet?
0
votes
1answer
420 views
Is there a way to do a prepared statement in linq2sql using a stored proc?
Based on what I can see the answer is no, but there is always a possibility
1
vote
3answers
812 views
MySQL Prepared Statements vs Stored Procedures Performance
I have an old MySQL 4.1 database with a table that has a few millions rows and an old Java application that connects to this database and returns several thousand rows from this this table on a ...
1
vote
2answers
791 views
Should prepared statements be deallocated when used inside stored procedures?
When using prepared statements inside stored procedures, should they be deallocated at the end of the procedure or not, or does it not matter, and why?
Some code to explain:
CREATE PROCEDURE ...
