The JDBC API doc for setmaxRows says that "If this limit is exceeded, the excess rows are "silently dropped".
Consider a Query fetching 1000 rows and i configured setMaxRows to 10 (i.e.) PreparedStatement.setMaxRows(10) .
Now the data from the database , present in packets travelling to my machine contains 10 rows or 1000 rows ?