![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE (Delphi) » Using ElevateDB » Navigating Tables, Views, and Query Result Sets |
begin
with MyTable do
begin
First;
{ do something to the first row }
Last;
{ do something to the last row }
end;
end;begin
with MyTable do
begin
First;
while not Eof do
Next;
end;
end;begin
with MyTable do
begin
Last;
while not Bof do
Prior;
end;
end;begin
with MyTable do
begin
First;
while not Eof do
MoveBy(10);
end;
end;This web page was last updated on Tuesday, September 16, 2025 at 04:56 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

