Subject | Re: [Firebird-Java] This code worked in 1.5.5... but it doesn't in 2.0.1 |
---|---|
Author | Roman Rokytskyy |
Post date | 2006-03-31T13:23:42Z |
> ResultSet objectForget what I suggested before - it is too Firebird specific. If you wish to
> stmtHTML.executeQuery("Select Cod, Nome From Cliente Order By Nome");
> // a generic method... used in many places and systems
> GeralHTML.PreencheComboBoxCodDesc(stmtHTML);
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