0

我想向 MySQL 服务器添加一些 udf,并且我在 mysql/lib/plugin 文件夹中有 .dll 文件。

我打开了一个 MySQL 客户端,它报告了一些奇怪的错误。

mysql> create function ipv6_ntop returns string soname 'libmysql-udf-ipv6.dll';
ERROR 1125 (HY000):  Function 'inet6_ntop' already exists

然后我尝试删除此功能:

mysql> drop function inet6_ntop;
ERROR 1305 (42000): FUNCTION (UDF) inet6_ntop does not exist
4

2 回答 2

0

尝试检查http://kmaiti.blogspot.com/2010/11/how-to-install-tcpwrapper-on-linux.html。看起来您必须将“ipv6_ntop”导入库。

http://www.justskins.com/forums/issues-creating-function-140539.html

http://dev.mysql.com/doc/refman/5.0/en/create-procedure.html

再说一遍 - 如果你没有先创建它,你就不能丢弃它。

于 2012-10-23T07:54:39.123 回答
0

mysql> drop function 'inet6_ntop'; /WITH QUOTES/

于 2015-03-20T20:17:17.060 回答