在orancle中做了一个包,其中有些函数和存储过程,
调用包中一个存储过程:原形如下
create or replace procedure p_pda_write_globaldata is
begin
package_server.of_write_globaldata('');
end p_pda_write_globaldata;package_server是包名,
of_write_globaldata是存储过程名。在VC中调用如下:
            _CommandPtr        m_pCommand;
            m_pCommand.CreateInstance(__uuidof(Command)) ;
            m_pCommand->ActiveConnection =m_pConnTemp ;  // 将库连接赋于它
            m_pCommand->CommandText = "p_pda_write_globaldata";  
            m_pCommand->Execute(NULL,NULL, adCmdStoredProc);
提示错误为:
不支持此接口。请问这是什么错误,如何修改。