C#中调用存储过程(带返回参数 And 无返回参数)
摘要:
/// /// 存储过程执行函数 /// /// 存储过程名 /// 参数信息集 /// 需返回的参数名数组 /// 存有返回值的HashTable public void ExecStoredProcedure(string strSpName,Hashtable ht,string[] strParameterArray) { SqlCommand comm = ... 阅读全文
posted @ 2006-04-24 15:19 ............. 阅读(1721) 评论(0) 推荐(1) 编辑