Is it possible for apache dbutils library to invoke oracle stored procedures?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Yes as it just uses JDBC - you will need a JDBC driver for Oracle
Yes:
Here I use a QueryRunner instance to obtain its connection since this is managed by DBUtils. Take in mind closing connection, exception handling, etc.
Hope this helps.