I am creating stored procedures in Pervasice 2000i SP4 and I have one that returns all data froma table with lots of fields (49). I can enter the stored procedure as
Create Procedure...
Returns(...
As
Begin
Select * from table1;
end
When I click ok and then reopen the stored procedure only about three quarters of the returns clause is there and the rest is gone.
I am thinking that there is a size limit to the SQL in the stored procedure. If that is the case how would I create a stored procedure that return all fields. Thanks and Good Luck!
zemp
Create Procedure...
Returns(...
As
Begin
Select * from table1;
end
When I click ok and then reopen the stored procedure only about three quarters of the returns clause is there and the rest is gone.
I am thinking that there is a size limit to the SQL in the stored procedure. If that is the case how would I create a stored procedure that return all fields. Thanks and Good Luck!
zemp