Hello,
I am planning to execute Oracle PL\SQL blocks via JDBC (can't test it yet, question of few days). Is there anything I should know? Does everything work as it used to with plain SQL?
I mean:
ResultSet rs = st.executeQuery("DECLARE BEGIN NULL; END;");
Or will I need some custom classes? I'd like to keep it as much simple as possible (no ORM etc.).
Thanks!