我刚刚下载了 mysql-proxy 并创建了这个脚本 lua(在 Mysql 文档中找到):
function read_query(packet)
if string.byte(packet) == proxy.COM_QUERY then
print("QUERY: " .. string.sub(packet, 2))
end
end
这是我正在使用的命令行:
mysql-proxy -P localhost:1234 -b localhost:3306 --proxy-lua-script=profile.lua --plugins=proxy
当我运行一个简单的查询(如“select * from table1”)时,报这个错误:“failed: .\lua-scope.c:241: stat(C:...\profile.lua) failed: No error (0)"
注意:如果我在没有 lua 脚本的情况下运行 mysql-proxy,则不会发生错误。
我需要安装一些东西来让 mysql-proxy 和查询跟踪工作吗?
我的环境是 Windows 7 Professional x64。
对不起英语不好。