![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 Manual for RAD Studio XE2 (C++ Win32) » Using ElevateDB » Navigating Tables, Views, and Query Result Sets |
{
MyTable->First();
// do something to the first row
MyTable->Last();
// do something to the last row
}{
MyTable->First();
while (!MyTable->Eof)
{
MyTable->Next();
}
}{
MyTable->Last();
while (!MyTable->Bof)
{
MyTable->Prior();
}
}{
MyTable->First();
while (!MyTable->Eof)
{
MyTable->MoveBy(10);
}
}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 ? |

