B4J Question Microsoft sql (mssql) running store procedure

victormedranop

Well-Known Member
Licensed User
Longtime User
hi, I am trying to run an store procedure with declaration parameter,
but a haven't found the way to do that.

anyone with and working example. I can connect, run query but no lock with store procedure.
I am using mssql-jdbc-6.2.2.jre8.

sample procedure

B4X:
DECLARE @RC int
DECLARE @CodigoCliente varchar(8)='10000180'
 EXECUTE @RC = [odbcRead].[__OrdenesIDIS] 
   
@CodigoCliente
GO

thanks,

Victor
 
Last edited:
Top