打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
关于存储过程的ADO调用的一些心得(输出参数,返回值)-数据库专栏,SQL Server-...
在一个项目中,我需要用到存储过程来访问数据,为了提供一个比较一致的接口以便调用,我没有使用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关掉以后才会正确返回.

关于输出参数的处理也和这一样,因为返回值本身就是当成输出参数来处理的.
通过这种方法,我们可以得到一个存储过程的返回值和结果集,而且对于所有的存储过程都可以一样使用,不必为某个特定的存储过程去写代码,具有一定的通用性.
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
MFC ACCESS连接数据库
VC编写ADO连接Access,SQL Server数据库入门实例
孙鑫VC学习笔记:第二十讲 (二) ado数据库编程
VC++ ADO开发实践之一
VC++(MFC)ADO连接SQL2000详解 (三)
VB实现SQL Server 2000存储过程调用
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服