0

MySQLサーバーにいくつかのudfsを追加したいのですが、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'; /引用符付き/

于 2015-03-20T20:17:17.060 に答える