Hi guys,
So, now that I got my jRDC server running, I started "messing" around with my testing DB...
I am now able to insert data into my data base...
But I can't figure out how to retrieve data from that same table...
Using Erel's examples, I am able to use the PrintTable(result) which will print the Column name and the Data that collumn contains...
I have tried a similar approach to the one used in the PrintTable sub, but I'm getting nowhere!
Can someone help?
I want to fill a listview with the data from a specific column...
[EDIT]
I GOT IT!
I just took the PrintTable sub and copy/paste it to my ReqManager_Result sub, and started stripping it from what I didn't need...
So in the end....
So, now that I got my jRDC server running, I started "messing" around with my testing DB...
I am now able to insert data into my data base...
But I can't figure out how to retrieve data from that same table...
Using Erel's examples, I am able to use the PrintTable(result) which will print the Column name and the Data that collumn contains...
I have tried a similar approach to the one used in the PrintTable sub, but I'm getting nowhere!
Can someone help?
I want to fill a listview with the data from a specific column...
[EDIT]
I GOT IT!
I just took the PrintTable sub and copy/paste it to my ReqManager_Result sub, and started stripping it from what I didn't need...
So in the end....
B4X:
For Each row() As Object In result.Rows
For Each record As Object In row
ListView1.Items.Add(record)
Log(record)
Next
Next
Last edited: