ADO执行存储过程2


在一个项目中,我需要用到存储过程来访问数据,为了提供一个比较一致的接口以便调用,我没有使用createparameter(),而是调用commandptr的refresh()函数先从数据库中查询参数.
_connectionptr m_pconn;
m_pconn.createinstance(__uuidof(connection));
m_pconn->open("driver={sql server};server=127.0.0.1;database=pub;uid=sa;pwd=", "","",0);

_commandptr  m_pcommand;
m_pcommand.createinstance(__uuidof(command));
_recordsetptr m_precordset;
m_precordset.createinstance(__uuidof(recordset));

m_pcommand->activeconnection = m_pconn;
m_pcommand->commandtext = "sp_xx";//存储过程名
m_pcommand->putcommandtype(adcmdstoredproc);
m_pcommand->parameters->refresh();//从数据库查询参数信息


接下来就能够对每一个参数赋值了:
long cnt = m_pcommand->parameters->getcount();//取得参数的个数
for(long k=1;k<cnt;k++)
{//由于ado中认为返回值是第一个参数,因此这里用k=1滤掉第一个参数
 m_pcommand->parameters->getitem(k)->value = xxx;//按存储过程的参数顺序给参数赋值
}


现在能够执行这个存储过程了
m_precordset = m_pcommand->execute(0,0,adcmdstoredproc);
这个时候,假如接下来用
_variant_t ret_val = m_pcommand->parameters->getitem((long)0)->value;
那么将得不到值
而假如像下面这样调用的话就能够得到返回值了
m_precordset->close();
_variant_t output_para = m_pcommand->parameters->getitem((long)0)->value;
ms ado.net给这一现象的回复是:
 you can think of a stored procedure as a function in your code. the function doesn’t return a value until it has executed all of its code. if the stored procedure returns results and you haven’t finished processing these results, the stored procedure hasn’t really finished executing. until you’ve closed the datareader, the return and output parameters of your command won’t contain the values returned by your stored procedure.
也就是说execute()函数应该看成是直到m_precordset关掉以后才会正确返回.

关于输出参数的处理也和这相同,因为返回值本身就是当成输出参数来处理的.
通过这种方法,我们能够得到一个存储过程的返回值和结果集,而且对于任何的存储过程都能够相同使用,不必为某个特定的存储过程去写代码,具备一定的通用性.
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值