How can I get a limited number of records from the table in Progress OpenEdge database?
Something like in SQL:
SELECT TOP 100 * FROM MyTable
The only ugly solution I can find is looping through all records and breaking when 100 of them were displayed. But feels like there should be some better way of doing it.