Subject Re: [Firebird-Java] This code worked in 1.5.5... but it doesn't in 2.0.1
Author Roman Rokytskyy
> ResultSet object
> stmtHTML.executeQuery("Select Cod, Nome From Cliente Order By Nome");
> // a generic method... used in many places and systems
> GeralHTML.PreencheComboBoxCodDesc(stmtHTML);

Forget what I suggested before - it is too Firebird specific. If you wish to
first execute query and get result set in another method, you'd better
change the stmt.executeQuery(...) method to stmt.execute(....). Then you
will be able to obtain result set using getResultSet() method (though only
once).

Roman