如何在MySQL函数中引发错误 [英] How to raise an error within a MySQL function

查看:107
本文介绍了如何在MySQL函数中引发错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个MySQL函数,并且如果为参数传递的值是无效的,就会引发错误。在MySQL函数中引发错误的选项有哪些?

解决方案

MySQL 5.5引入了类似于其他例外的信号语言:

http:// dev .mysql.com / doc / refman / 5.5 / en / signal.html



例如,在 mysql 命令行客户端:

  mysql> SIGNAL SQLSTATE'45000'SET MESSAGE_TEXT ='自定义错误'; 
错误1644(45000):自定义错误


I've created a MySQL function and would like to raise an error if the values passed for the parameters are invalid. What are my options for raising an error within a MySQL function?

解决方案

MySQL 5.5 introduces signals, which are similar to exceptions in other languages:

http://dev.mysql.com/doc/refman/5.5/en/signal.html

For example, in the mysql command line client:

mysql> SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Custom error';
ERROR 1644 (45000): Custom error

这篇关于如何在MySQL函数中引发错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆