@Nullable open static fun invokeJdbcMethod(method: Method, @Nullable target: Any): Any
Invoke the specified JDBC API Method against the supplied target object with no arguments.
target - the target object to invoke the method on
SQLException - the JDBC API SQLException to rethrow (if any)
Return
the invocation result, if any
See Also
#invokeJdbcMethod(java.lang.reflect.Method, Object, Object[])
@Nullable open static fun invokeJdbcMethod(method: Method, @Nullable target: Any, @Nullable vararg args: Any): Any
Invoke the specified JDBC API Method against the supplied target object with the supplied arguments.
target - the target object to invoke the method on
args - the invocation arguments (may be null)
SQLException - the JDBC API SQLException to rethrow (if any)
Return
the invocation result, if any
See Also
#invokeMethod(java.lang.reflect.Method, Object, Object[])