We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为了记录异常信息到Oracle数据库日志表中,sql为 insert into sys_log(ID,EXCEPTION) values(?,?) 会报错。原因是druid中认为EXCEPTION是oracle关键字。改成 insert into sys_log(ID,"EXCEPTION") values(?,?) 也不行。
不用druid的话以上2条语句都能正常执行,用了druid都无法执行。
注:ID为char(32)类型,EXCEPTION为CLOB。
The text was updated successfully, but these errors were encountered:
你在filters上配置了wall(SQL防火墙)?
Sorry, something went wrong.
bug fixed oracle sql parser. fixed issue 1211. alibaba#1211
d86fb1d
如果没有配置filters="wall",那样只会打印error log。同时我也修正了此问题,等过几天发布新版本吧
filters只配置了config,stat。已自己下载并编译mater代码,测试通过,期待新版本。 另外,你们响应issue速度很快。赞一个。
No branches or pull requests
为了记录异常信息到Oracle数据库日志表中,sql为
insert into sys_log(ID,EXCEPTION) values(?,?)
会报错。原因是druid中认为EXCEPTION是oracle关键字。改成
insert into sys_log(ID,"EXCEPTION") values(?,?)
也不行。
不用druid的话以上2条语句都能正常执行,用了druid都无法执行。
注:ID为char(32)类型,EXCEPTION为CLOB。
The text was updated successfully, but these errors were encountered: