Subject Re: [Firebird-Java] How do I use quoted fields?
Author Marczisovszky Daniel
SA> How do I use quoted fields in Firebird?

SA> in ISQL you can do that by: SQL> select * from "tblTemp"

SA> How can you do that from inside java app?

SA> ResultSet rs = st.executeQuery("select * from ???;");

ResultSet rs = st.executeQuery("select * from tblTemp");

Note that there is *no* ; at the end of query. In JDBC you should not
use that.

best wishes,
daniel