I plan to execute Oracle PL \ SQL blocks via JDBC (I can’t check it yet, a few days question). Is there anything I should know? Does everything work the same as with regular SQL?
I mean:
ResultSet rs = st.executeQuery("DECLARE BEGIN NULL; END;");
Or do I need some custom classes? I would like to keep it as simple as possible (without ORM, etc.).
Thanks!
Xorty source share