Hi all,
i need to migrate the application that i'm developing into SqlServer 2000, now i need to create a stored procedure, i created the stored procedure but i can't call it from my application as the calling code involves SqlServer Script like
'declare @row_count int
declare @table_name varchar(100)
select @table_name = 'company'
exec is_table_found @table_name ,@row_count output'
what can i do to make the form builder bypass that kinda code?

Thanks for your help