Oracle SQL 转义字符(对于 '&')
在尝试使用 Oracle SQL Developer 执行 SQL 插入语句时,我保留生成“输入替换值”提示:
insert into agregadores_agregadores
(
idagregador,
nombre,
url
)
values
(
2,
'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss\&url='
);
我尝试过 使用上面的“\”转义查询中的特殊字符,但我仍然无法避免与号“&”,导致字符串替换。
While attempting to execute SQL insert statements using Oracle SQL Developer I keep generating an "Enter substitution value" prompt:
insert into agregadores_agregadores
(
idagregador,
nombre,
url
)
values
(
2,
'Netvibes',
'http://www.netvibes.com/subscribe.php?type=rss\&url='
);
I've tried escaping the special character in the query using the '\' above but I still can't avoid the ampersand, '&', causing a string substitution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
&
是DEFINE
的默认值,它允许您使用替换变量。 我喜欢使用将其关闭,这样你就不必担心转义或 CHR(38)。
the
&
is the default value forDEFINE
, which allows you to use substitution variables. I like to turn it off usingthen you won't have to worry about escaping or CHR(38).
<代码>|| chr(38) ||
这个解决方案非常完美。
|| chr(38) ||
This solution is perfect.
将定义字符设置为 & 以外的字符
Set the define character to something other than &
从双中选择“一个”||“&”||“两个”
select 'one'||'&'||'two' from dual
真正的答案是您需要将转义字符设置为“\”:
SET ESCAPE ON
出现该问题的原因可能是禁用了转义,或者将转义字符设置为“\”以外的字符。 上述语句将启用转义并将其设置为“\”。
之前发布的其他答案都没有真正回答原始问题。 他们都在解决问题,但没有解决问题。
The real answer is you need to set the escape character to '\':
SET ESCAPE ON
The problem may have occurred either because escaping was disabled, or the escape character was set to something other than '\'. The above statement will enable escaping and set it to '\'.
None of the other answers previously posted actually answer the original question. They all work around the problem but don't resolve it.
在您的请求之前添加此内容
add this before your request