In general, I work with MySQL via JDBC. I make a request to the database:
SELECT * FROM Leters LIMIT 0, 500 At the output, I naturally get the ResulSet object, but how do I know how many rows returned the request. The getFetchSize () and getFetchDirection () methods return something wrong. Maybe somehow through other objects this is done?