I am using UNIDAC latest version on MS SQL Server 2005.
I have a query statement :
CREATE TABLE #customer
( CusId varchar(25),
CusName varchar(50),
CusAddress varchar(100) )
exec S_InsertandSelectCustomer
the store proc S_InsertandSelectCustomer contain insert statement to table #customer and then select it.
If i run the sql stement using UniQuery. and error message
table #customer not found.
What should i do ?
Our old program using BDE can run this with no problem.