sqlserver +bexpree err

Discussion of open issues, suggestions and bugs regarding usage of dbExpress drivers for SQL Server in Delphi and C++Builder
Post Reply
masks

sqlserver +bexpree err

Post by masks » Sat 07 May 2005 09:08

create proc proc1
as
begin
create table #temptable(spoilage float,Lcontractqty float,inbgqty float,inqty float,
Pcontractqty float,outbgqty float,outbgzqty float,outqty float,
outzqty float,outotherqty float,outotherzqty float,Pkcqty float,
Pkczqty float,Lycqty float,Lkcqty float,banlance float )


insert into #temptable(spoilage,Lcontractqty,inbgqty,inqty,Pcontractqty,outbgqty,outbgzqty,outqty,
outzqty,outotherqty,outotherzqty,Pkcqty,Pkczqty,Lycqty,Lkcqty,banlance)
values(1,1,1,1,1,1,1,1,
1,1,1,1,1,1,1,1)


select * from #temptable
drop table #temptable
end


这是一段sqlserver的存储过程:
在delphi中ado调用是正常的
如何用dbexpree+clientdataset报错: 这是为什么?谁能讲出正确调用的方法

Ikar
Posts: 1693
Joined: Thu 28 Oct 2004 13:56

Post by Ikar » Tue 10 May 2005 07:40

We couldn't reproduce the problem.
Please send us (dbxsda*crlab*com) complete small sample to demonstrate it.

Post Reply