摘要:
--用ParameterDirection.ReturnValue; 返回值CREATE PROCEDURE dbo.a ASdeclare @i intselect @i=count(*) from tbD_M_Modlereturn @iGO--用ParameterDirection.Output; 参数返回值CREATE PROCEDURE dbo.a @i int outputASsele... 阅读全文
posted @ 2009-11-24 13:52 孙潇楠 阅读(1204) 评论(0) 推荐(0) 编辑