X
xiaolinj79
Unregistered / Unconfirmed
GUEST, unregistred user!
在DCOM的RemoveDataModule下的接口中使用ADODataSet执行sql语句的insert语句
代码如下
with ADODataModule.ADODataSet1do
begin
Close;
CommandText:=sSQL;
Active:=true;
Open;
end;
错误完整提示是:
Project SDMS_Client.exe raised exception class EOleException with message
'ADODataSet1:CommandTextdo
es not return a result set'.
Process stopped.Use Step or Run to continue.
请告知到底是什么原因?
在执行select语句无问题,而且可以使用result返回函数值
代码如下
with ADODataModule.ADODataSet1do
begin
Close;
CommandText:=sSQL;
Active:=true;
Open;
end;
错误完整提示是:
Project SDMS_Client.exe raised exception class EOleException with message
'ADODataSet1:CommandTextdo
es not return a result set'.
Process stopped.Use Step or Run to continue.
请告知到底是什么原因?
在执行select语句无问题,而且可以使用result返回函数值