I have installed RDC and the Select, Update, Insert, statements work well.
I'm trying to call a store procedure. I searched the forum and have tried CALL EXEC and has not worked for me.
Into file config.properties:
#SQL Server
#DriverClass=net.sourceforge.jtds.jdbc.Driver
#JdbcUrl=jdbc:jtds:sqlserver://<database server ip>/<database>
User=sysdba
Password=masterkey
ServerPort=17178
#If Debug is true then this file will be reloaded on every query.
#This is useful if you need to modify the queries.
Debug=true
As should declare the command in the config to run well.
In the B4A Editor:
Dim cmd As DBCommand
Dim Name As String
cmd.Initialize
cmd.Name = "select_spsalidas"
cmd.Parameters = Array As Object(1,1,1,1,1,1,1,1,1,1,1,1,1)
'reqmanager is initialized
'reqManager.ExecuteCommand(cmd, 0)
reqManager.ExecuteQuery(cmd,0,"select_spsalidas")
But in the server?
Copy config.properties at directory remotebaseconnector and what parameters i edit in the file for conection Interbase.
In the jRDC.rar don't exist jRDC.jar
Thanks
Dim cmd As DBCommand
Dim Name As String
cmd.Initialize
cmd.Name = "select_spsalidas"
cmd.Parameters = Array As Object(1,1,1,1,1,1,1,1,1,1,1,1,2)
reqManager.ExecuteCommand(cmd, "select_spsalidas")