欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MySQL定义异常和异常处理详解

程序员文章站 2023-12-15 17:30:04
在mysql中,特定异常需要特定处理。这些异常可以联系到错误,以及子程序中的一般流程控制。定义异常是事先定义程序执行过程中遇到的问题,异常处理定义了在遇到问题时对应当采取的...

在mysql中,特定异常需要特定处理。这些异常可以联系到错误,以及子程序中的一般流程控制。定义异常是事先定义程序执行过程中遇到的问题,异常处理定义了在遇到问题时对应当采取的处理方式,并且保证存储过程或者函数在遇到错误时或者警告时能够继续执行。 

1 异常定义 

1.1 语法 

declare condition_name condition for [condition_type]; 

1.2 说明

condition_name参数表示异常的名称; 
condition_type参数表示条件的类型,condition_type由sqlstate [value] sqlstate_value|mysql_error_code组成:

      sqlstate_value和mysql_error_code都可以表示mysql的错误;
      sqlstate_value为长度为5的字符串类型的错误代码;
      mysql_error_code为数值类型错误代码; 

1.3 示例 
定义“error 1148(42000)”错误,名称为command_not_allowed。可以有以下两种方法: 

//方法一:使用sqlstate_value 
declare command_not_allowed condition for sqlstate '42000′; 
//方法二:使用mysql_error_code 
declare command_not_allowed condition for 1148; 

2 自定义异常处理 

2.1 异常处理语法 

declare handler_type handler for condition_value [,...] sp_statement 

2.2 参数说明 

handler_type: continue|exit|undo

 handler_type为错误处理方式,参数为3个值之一;
 continue表示遇到错误不处理,继续执行;
 exit表示遇到错误时马上退出;
 undo表示遇到错误后撤回之前的操作,mysql暂不支持回滚操作; 

condition_value: sqlstate [value] sqlstate_value| condition_name|sqlwarning|not found|sqlexception|mysql_error_code

 condition_value表示错误类型;
 sqlstate [value] sqlstate_value为包含5个字符的字符串错误值;
 condition_name表示declare condition定义的错误条件名称;
 sqlwarning匹配所有以01开头的sqlstate错误代码;
 not found匹配所有以02开头的sqlstate错误代码;
 sqlexception匹配所有没有被sqlwarning或not found捕获的sqlstate错误代码;
 mysql_error_code匹配数值类型错误代码; 

2.3 异常捕获方法 

//方法一:捕获sqlstate_value异常 
//这种方法是捕获sqlstate_value值。如果遇到sqlstate_value值为”42s02″,执行continue操作,并输出”no_such_table”信息 
declare continue handler for sqlstate '42s02′ set @info='no_such_table'; 


//方法二:捕获mysql_error_code异常 
//这种方法是捕获mysql_error_code值。如果遇到mysql_error_code值为1146,执行continue操作,并输出”no_such_table”信息; 
declare continue handler for 1146 set @info='no_such_table'; 


//方法三:先定义条件,然后捕获异常 
declare no_such_table condition for 1146; 
declare continue handler for no_such_table set @info='no_such_table';  


//方法四:使用sqlwarning捕获异常 
declare exit handler for sqlwarning set @info='error';  


//方法五:使用not found捕获异常 
declare exit handler for not found set @info='no_such_table';


//方法六:使用sqlexception捕获异常 
declare exit handler for sqlexception set @info='error';

3 综合示例 

创建一个表,设置该表的主键,在不定义异常处理和定义异常处理情况下看执行到哪一步。

show databases;
use wms;
create table location
(
location_id int primary key,
location_name varchar(50)
); 

示例1:不定义异常情况下

 delimiter //
create procedure handlerinsertnoexception()
begin
 /*declare continue handler for sqlstate '23000' set @x2=1;*/
 set @x=1;
 insert into location values (1,'beijing');
 set @x=2;
 insert into location values (1,'wuxi');
 set @x=3;
end;
//
delimiter ; 

调用存储过程与结果:

 mysql> call handlerinsertnoexception();
error 1062 (23000): duplicate entry '1' for key 'primary'
mysql> select @x;
+------+
| @x  |
+------+
|  2 |
+------+
1 row in set (0.00 sec)

mysql> select * from location;
+-------------+---------------+
| location_id | location_name |
+-------------+---------------+
|      1 | beijing    |
+-------------+---------------+
1 row in set (0.00 sec) 

注意:操作示例2前要清空表中数据,并退出重新登录,以免客户端变量@x影响,详细说明参见结论中的第一点。

 mysql> truncate table location;
query ok, 0 rows affected (0.04 sec)
mysql> select * from location;
empty set (0.00 sec)
mysql> exit;
bye

david@louis:~$ mysql -u root -p
enter password: 
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 53
server version: 5.5.38-0ubuntu0.14.04.1 (ubuntu)

mysql> use wms;
reading table information for completion of table and column names
you can turn off this feature to get a quicker startup with -a

database changed
mysql> select * from location;
empty set (0.00 sec)

mysql> select @x;
+------+
| @x  |
+------+
| null |
+------+
1 row in set (0.00 sec)

 示例2:定义异常处理情况下:

 delimiter //
create procedure handlerinsertwithexception()
begin
 declare continue handler for sqlstate '23000' set @x2=1;
 set @x=1;
 insert into location values (1,'beijing');
 set @x=2;
 insert into location values (1,'wuxi');
 set @x=3;
end;
//
delimiter ; 

调用存储过程与结果:

 mysql> call handlerinsertwithexception();
query ok, 0 rows affected (0.09 sec)

mysql> select @x;
+------+
| @x  |
+------+
|  3 |
+------+
1 row in set (0.00 sec) 

说明与结论: 

一、mysql中,@var_name表示用户变量,使用set语句为其赋值,用户变量与连接有关,一个客户端定义的变量不能被其他客户端看到或者使用。当客户端退出时,该客户端连接的所有变量将自动释放。 

二、在示例1中,由于注释了异常的声明”",此时向表中插入相同主键,就会触发异常,并且采取默认(exit)路径;且查看此时的@x返回2,表示下面的insert语句并没有执行就退出了. 

三、定义了异常处理,此时遇到错误也会按照异常定义那样继续执行;但只有第一条数据被插入到表中,此时用户变量@x=3说明已经执行到了结尾;

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

上一篇:

下一篇: