I am new to Functions as a service. I have done all the relavant setup and get below output for command command : fn invoke helloworld-app helloworld-func Output: Hello, world!
Now I need to invoke the helloworld-func using java client code which can run on any location. Is it possible ? If yes how ?
In Oracle RDBMS you can compile a java source:
Then you can wrap it in an Oracle function:
Then you can just call it in an normal SQL statement (as per any other function):
The Java function will run on the server but the query can be invoked from any SQL client connected to the server and will return the output to that client.