private sub button_click
userid = userid.text
Wait For (rdc.ExecuteQuery("select_name_address", Array(userid))) Complete (Result As RDCResult) 'queries are defined in the server config.properties file
config.properties entry/query
sql.select_name_address.Select firstname, lastname, address from userlist where userid = ?
Is it possible to send a string instead value of an array to the jRDC3 server in B4J?
userid = userid.text
Wait For (rdc.ExecuteQuery("select_name_address", Array(userid))) Complete (Result As RDCResult) 'queries are defined in the server config.properties file
config.properties entry/query
sql.select_name_address.Select firstname, lastname, address from userlist where userid = ?
Is it possible to send a string instead value of an array to the jRDC3 server in B4J?