S selvamurali Active Member Licensed User Longtime User Sep 5, 2013 #1 Dear Team I used the RDC(Remote Database Connector) to connect my remote database . it worked well to retrieve the data. but i need to insert the data from my application which the user entered data in the edittext . how to do this.
Dear Team I used the RDC(Remote Database Connector) to connect my remote database . it worked well to retrieve the data. but i need to insert the data from my application which the user entered data in the edittext . how to do this.
Erel B4X founder Staff member Licensed User Longtime User Sep 5, 2013 #2 It is similar to other queries. For example: B4X: Dim cmd As DBCommand cmd.Initialize cmd.Name = "insert_animal" cmd.Parameters = Array As Object(EditText1.Text, EditText2.Text) reqManager.ExecuteCommand(cmd, "cmd") Upvote 0
It is similar to other queries. For example: B4X: Dim cmd As DBCommand cmd.Initialize cmd.Name = "insert_animal" cmd.Parameters = Array As Object(EditText1.Text, EditText2.Text) reqManager.ExecuteCommand(cmd, "cmd")