08 2012 档案

摘要:首先定义存储过程如下:(sqlserver 2008) use studb2008 go create procedure proc_test @num int=-1 output as set @num=10 --输出参数 return 2 --返回值 go 然后在vs中写如下c#代码: ... 阅读全文
posted @ 2012-08-17 23:59 xujie 阅读(316) 评论(0) 推荐(0)