Hi!
I'm trying to link to a MS Sql Server database via RDC.
I followed the steps of the guide and when i run the ?method=test it works, it shows "connection successful".
I've done the setup of the config.properties file but, when i try to run a stored command, it always raises a error 500 and shows "unkown error" on the log.
Thank you in advance.
I'm trying to link to a MS Sql Server database via RDC.
I followed the steps of the guide and when i run the ?method=test it works, it shows "connection successful".
I've done the setup of the config.properties file but, when i try to run a stored command, it always raises a error 500 and shows "unkown error" on the log.
B4X:
'Select statement on config.properties
sql.select_actioncodes= select...
B4X:
'Code to run the statement
reqManager.Initialize(Me, "http://***.***.***.***:17178")
Dim cmd1 As DBCommand
cmd1.Initialize
cmd1.Name = "select_actioncodes"
reqManager.ExecuteCommand(cmd1,"Select")