2004-04-05 17:43:37 +02:00
|
|
|
#
|
|
|
|
# SQL Syntax for Prepared Statements test
|
|
|
|
#
|
|
|
|
--disable_warnings
|
|
|
|
drop table if exists t1,t2;
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
create table t1
|
|
|
|
(
|
|
|
|
a int primary key,
|
2004-05-07 01:32:51 +02:00
|
|
|
b char(10)
|
2004-04-05 17:43:37 +02:00
|
|
|
);
|
|
|
|
insert into t1 values (1,'one');
|
|
|
|
insert into t1 values (2,'two');
|
|
|
|
insert into t1 values (3,'three');
|
|
|
|
insert into t1 values (4,'four');
|
|
|
|
|
|
|
|
# basic functionality
|
|
|
|
set @a=2;
|
|
|
|
prepare stmt1 from 'select * from t1 where a <= ?';
|
|
|
|
execute stmt1 using @a;
|
|
|
|
set @a=3;
|
|
|
|
execute stmt1 using @a;
|
|
|
|
|
|
|
|
# non-existant statement
|
|
|
|
--error 1243
|
|
|
|
deallocate prepare no_such_statement;
|
|
|
|
|
|
|
|
--error 1210
|
|
|
|
execute stmt1;
|
|
|
|
|
|
|
|
# Nesting ps commands is not allowed:
|
|
|
|
--error 1064
|
|
|
|
prepare stmt2 from 'prepare nested_stmt from "select 1"';
|
|
|
|
|
|
|
|
--error 1064
|
|
|
|
prepare stmt2 from 'execute stmt1';
|
|
|
|
|
|
|
|
--error 1064
|
|
|
|
prepare stmt2 from 'deallocate prepare z';
|
|
|
|
|
|
|
|
# PS insert
|
|
|
|
prepare stmt3 from 'insert into t1 values (?,?)';
|
|
|
|
set @arg1=5, @arg2='five';
|
|
|
|
execute stmt3 using @arg1, @arg2;
|
|
|
|
select * from t1 where a>3;
|
|
|
|
|
|
|
|
# PS update
|
|
|
|
prepare stmt4 from 'update t1 set a=? where b=?';
|
|
|
|
set @arg1=55, @arg2='five';
|
|
|
|
execute stmt4 using @arg1, @arg2;
|
|
|
|
select * from t1 where a>3;
|
|
|
|
|
|
|
|
# PS create/delete
|
|
|
|
prepare stmt4 from 'create table t2 (a int)';
|
|
|
|
execute stmt4;
|
|
|
|
prepare stmt4 from 'drop table t2';
|
|
|
|
execute stmt4;
|
|
|
|
|
|
|
|
# Do something that will cause error
|
|
|
|
--error 1051
|
|
|
|
execute stmt4;
|
|
|
|
|
|
|
|
# placeholders in result field names.
|
|
|
|
prepare stmt5 from 'select ? + a from t1';
|
|
|
|
set @a=1;
|
|
|
|
execute stmt5 using @a;
|
|
|
|
|
|
|
|
execute stmt5 using @no_such_var;
|
|
|
|
|
2004-04-07 10:58:28 +02:00
|
|
|
set @nullvar=1;
|
2004-04-05 17:43:37 +02:00
|
|
|
set @nullvar=NULL;
|
|
|
|
execute stmt5 using @nullvar;
|
|
|
|
|
2004-04-07 10:58:28 +02:00
|
|
|
set @nullvar2=NULL;
|
|
|
|
execute stmt5 using @nullvar2;
|
|
|
|
|
2004-04-30 18:08:38 +02:00
|
|
|
# Check that multiple SQL statements are disabled inside PREPARE
|
|
|
|
--error 1064
|
|
|
|
prepare stmt6 from 'select 1; select2';
|
|
|
|
|
|
|
|
--error 1064
|
|
|
|
prepare stmt6 from 'insert into t1 values (5,"five"); select2';
|
|
|
|
|
|
|
|
# This shouldn't parse
|
|
|
|
--error 1064
|
|
|
|
explain prepare stmt6 from 'insert into t1 values (5,"five"); select2';
|
|
|
|
|
2004-05-07 01:32:51 +02:00
|
|
|
create table t2
|
|
|
|
(
|
|
|
|
a int
|
|
|
|
);
|
|
|
|
|
|
|
|
insert into t2 values (0);
|
|
|
|
|
|
|
|
# parameter is NULL
|
|
|
|
set @arg00=NULL ;
|
|
|
|
prepare stmt1 from 'select 1 FROM t2 where a=?' ;
|
|
|
|
execute stmt1 using @arg00 ;
|
|
|
|
|
2004-05-21 02:27:50 +02:00
|
|
|
# prepare using variables:
|
|
|
|
--error 1064
|
|
|
|
prepare stmt1 from @nosuchvar;
|
|
|
|
|
|
|
|
set @ivar= 1234;
|
|
|
|
--error 1064
|
|
|
|
prepare stmt1 from @ivar;
|
|
|
|
|
|
|
|
set @fvar= 123.4567;
|
|
|
|
--error 1064
|
|
|
|
prepare stmt1 from @fvar;
|
|
|
|
|
|
|
|
set @str1 = 'select ?';
|
|
|
|
set @str2 = convert(@str1 using ucs2);
|
|
|
|
prepare stmt1 from @str2;
|
|
|
|
execute stmt1 using @ivar;
|
|
|
|
|
2004-05-07 01:32:51 +02:00
|
|
|
drop table t1,t2;
|
2004-06-18 02:16:08 +02:00
|
|
|
#
|
|
|
|
# Bug #4105: Server crash on attempt to prepare a statement with character
|
|
|
|
# set introducer
|
|
|
|
#
|
|
|
|
PREPARE stmt1 FROM "select _utf8 'A' collate utf8_bin = ?";
|
|
|
|
set @var='A';
|
|
|
|
EXECUTE stmt1 USING @var;
|
|
|
|
DEALLOCATE PREPARE stmt1;
|
2004-06-22 19:38:07 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# BUG#3486: FOUND_ROWS() fails inside stored procedure [and prepared statement]
|
|
|
|
#
|
|
|
|
create table t1 (id int);
|
|
|
|
prepare stmt1 from "select FOUND_ROWS()";
|
|
|
|
select SQL_CALC_FOUND_ROWS * from t1;
|
|
|
|
# Expect 0
|
|
|
|
execute stmt1;
|
|
|
|
insert into t1 values (1);
|
|
|
|
select SQL_CALC_FOUND_ROWS * from t1;
|
|
|
|
# Expect 1
|
|
|
|
execute stmt1;
|
|
|
|
# Expect 0
|
|
|
|
execute stmt1;
|
|
|
|
deallocate prepare stmt1;
|