Subject Re: [Firebird-Java] This code worked in 1.5.5... but it doesn't in 2.0.1
Author Roman Rokytskyy
> and into PreencheComboBoxCodDesc method, I have this code:
> ResultSet rs = stmt.getResultSet();

Change it to

ResultSet rs =
((org.firebirdsql.jdbc.FirebirdStatement)stmt).getCurrentResultSet();

Roman