mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
76 lines
1.5 KiB
Text
76 lines
1.5 KiB
Text
|
#
|
||
|
# SQL Syntax for Prepared Statements test
|
||
|
#
|
||
|
--disable_warnings
|
||
|
drop table if exists t1,t2;
|
||
|
--enable_warnings
|
||
|
|
||
|
create table t1
|
||
|
(
|
||
|
a int primary key,
|
||
|
b char(10),
|
||
|
);
|
||
|
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;
|
||
|
|
||
|
set @nullvar=NULL;
|
||
|
execute stmt5 using @nullvar;
|
||
|
|
||
|
drop table t1;
|
||
|
|