Subject Re: empty result set
Author Roman Rokytskyy
> using the following code example, the metadata from the result set
> contain data but the resultset contain 0 rows. what am i doing
> wrong?

Is student table filled with data? Metadata for result set describe
columns returned from the server. So, situation when metadata returns
something, but ResultSet.next() returns false is legal.

Roman