I wish read an access table e.g.:
1111
2222
3333
4444
5555
6666
If I must positioning a row, I do
how do to read the next line? (3333,4444....)
I tried
but does not work
Any help?
Thanks
1111
2222
3333
4444
5555
6666
If I must positioning a row, I do
B4X:
Table.Initialize(Access.GetTable("TABLE"))
Index.Initialize(Table.GetIndex("PrimaryKey"))
Cursor.Initialize(Table.GetTable, IndexEnt.GetIndex)
CODE=2222
Cursor.FindClosestRowByEntry(Array As Object(CODE))
I tried
B4X:
Table.GetNextRow
Any help?
Thanks