ravi
answered Nov 30 '-1 00:00
make .so file from the available code ,
suppose custom_func.so file
Now connect .so file to MySQL custom function
mysql> CREATE FUNCTION custom_func RETURNS STRING SONAME 'custom_func.so';
use custom function
mysql> select custom_func ("process me");