Visual Basic:
Dim ReadUsers As New OleDb.OleDbCommand("SELECT * FROM Emails WHERE GroupID = '" + MyID + "'", GroupConnection)
Dim MyReader2 As OleDbDataReader = ReadUsers.ExecuteReader
While MyReader2.Read
...
End While
I have a critical problem in reading data from database!
But the above code reads all the fields, I wanna split it to 4 sections and if for example there are 1000 fields, I wanna read once the first 250 fields, next time 2nd 250 fields, next time 3rd 250 fields, next time last 250 fields, how can I apply this filter in SELECT command?
Can anyone help me plz?