There is a statement in the MySQL Docs (http://dev.mysql.com/doc/refman/5.0/en/adding-udf.html) that is bothering me:
"A UDF contains code that becomes part of the running server, so when you write a UDF, you are bound by any and all constraints that otherwise apply to writing server code. For example, you may have problems if you attempt to use functions from the libstdc++ library."
Why there may be problems if you use C++ standard library functions to write a UDF ??
Does that mean that I'm condemned to use plain old C to write my UDFs ?? (please say no)