Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

data reader

Status
Not open for further replies.
Apr 9, 2007
16
US
hi,
i am using ExecuteReader()to read data from ms access database. it will read from row 1 down until the end.
my question is, how do i get it to read starting from the last row to the first row?
thanks in advance.
 
hi,
thanks for the reply.
Im quite new with sql statements. How do I order the statement?
thanks.
 
Ascending Order:
Select columns
From Table
Where ..something ..
Order By columns

Decending Order:
Select columns
From Table
Where ..something ..
Order By columns DESC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top