I am working with jRDC2 for the first time, but its not clear to me how to get a specific column within a row...
For example, this works, but it prints everything:
However, when I try to do this, it doesnt work?
So I assume my method is incorrect, and because I dont know what "row" is in the For Each statement, I cant seem to figure it out either.
Thoughts?
In some cases I don't want the entire row of data, just a specific column say at column 3.
For example, this works, but it prints everything:
B4X:
For Each row() As Object In res.Rows
For Each record As Object In row
Log(record)
Next
Next
However, when I try to do this, it doesnt work?
B4X:
For I = 0 To res.Rows.Size-1
Log(res.Rows.Get(I))
Next
So I assume my method is incorrect, and because I dont know what "row" is in the For Each statement, I cant seem to figure it out either.
Thoughts?
In some cases I don't want the entire row of data, just a specific column say at column 3.