|
原帖由 璇璇 于 2008-11-27 09:02 发表 ![]()
5.1和5.0的版本比较谁有?
存储过程部分的不同有哪些?他的游标和异常处理掺和在一起,不太好用啊,看来mysql某些还是不如Oracle强大哦!
5.1现在稳定性还好么?有没有商用的mysql5.1?
功能和oracle差不多,但肯定没有oracle强大。
对异常定义Mysql很简单实用
declare exit handler for not found begin insert into test_error(msg) values('ptest not found'); set b1=1 ;end;
declare exit handler for sqlexception set b1=1; |
|