Now i think i understand what you wanna do, the way that you call stored procedures binding parameters as @bb = '& loc:SomeValue &','& @aa = '& loc:SomeValue2 lets you call SP and I don't have to pass the parameters in same sequence of the stored procedure. @my_result is the variable that you...
Hi there,
Usually i use a Dummy table and put result from SP in dummy buffer and then use dummy buffer as a table.
create PROCEDURE sk_test5 @aa nvarchar(30), @bb nvarchar(30)
AS
select @aa + @bb
GO
DUMMY{prop:sql} = 'EXEC sk_test5 ''foo'',''bar'''
IF ERRORCODE() THEN
MESSAGE(ERROR()...
Hi there,
Im having strange issues with ICMP Module linking, i declared types for icmp module and made it work fine in windows xp, but gives me a GPF on windows 7 and 10. Im developing in Clarion 9.1, can anyone help me with this? Im trying to use IcmpSendEcho to know if one pc is online on my...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.