Hello to everybody. I have a b4j app which connects to MSSQLServer. It sends a SQL query to the server, like:
then
everything works fine. Now I need to send this result to a b4a app which will be shown on a tableview but I don't know how to send it.
For the connection between b4j and b4a apps I use Erel's http server and client.
thanks for your help and suggestions.
B4X:
Dim result As ResultSet = sqltest.ExecQuery("SELECT * from dbdata")
then
B4X:
Do While result.NextRow
TableView1.Items.Add(Array As String(result.GetString2(1)))
Loop
everything works fine. Now I need to send this result to a b4a app which will be shown on a tableview but I don't know how to send it.
For the connection between b4j and b4a apps I use Erel's http server and client.
thanks for your help and suggestions.