【紧急提问】:MySql存储过程脚本中含有预处理语句时,不能执行脚本
摘要:
## 不含预处理的存储过程## 存储过程 CustomCount.sql : 取各个表的记录数Drop Procedure If Exists CustomCount;Create Procedure CustomCount( out RowNum bigint)Not DeterministicSQL Security DefinerComment ''Begin Select Count(*) Into RowNum From uc_members;End;----------------------------------------------------------- 阅读全文
posted @ 2011-11-24 11:56 天涯人 阅读(1018) 评论(1) 推荐(1) 编辑