I am using MySQL UDF function sys_exec for calling Java program inside a trigger of MySQL. Can you please provide me the information about how I pass argument to sys_exec so that it will call Java program?
I am using MySQL UDF function sys_exec for calling Java program inside a trigger
Share
You can use this link to use sys_exec function. It says,
For executing Java program you should fill arg1 as
"java <absolute path to precompiled program to run>".Note: path to java should be configured before hand.
Hope it helps…