devxlogo

Tables and SQL

Tables and SQL

Question:
How do you count the number of rows displayed in a DBGrid when displayed through a query? Using TQuery, I get 50 to 60 files, but want to know exactly how many rows passed the SQL query and are now being displayed.

Answer:
It’s funny that something as important as row statistics is notwell-documented in Delphi. Oh well, there’s a lot to the program.

For TTable, TQuery and TStoredProc (if it returns a pointer to a cursor),you can get the Count of records by calling the RecordCount method, and thecurrent record on which the cursor is positioned with the RecNo method.

To get a count of the number of rows returned from a query,don’t look to the DBGrid. Instead, look to the TQuery itself, and use itsRecordCount property to get the number of records being pointed at by itscursor.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist