在 Oracle Developer 中出现“输入预防措施值”弹出窗口
Got 'Enter values for precautions" popup in Oracle Developer
我正在使用 Oracle Developer 执行 SQL 查询。我收到了这个弹出窗口:
Enter value for precaution
当我尝试执行插入查询时。有谁知道我为什么会收到这个弹出窗口?
如果您发表声明 运行.
会更容易回答
同时,这可能是因为 insert
包含 &
表示绑定变量。像这样:
insert into test (name) values ('Is this what&precaution?');
怎么办? 运行先set define off
,然后运行 insert
.
我正在使用 Oracle Developer 执行 SQL 查询。我收到了这个弹出窗口:
Enter value for precaution
当我尝试执行插入查询时。有谁知道我为什么会收到这个弹出窗口?
如果您发表声明 运行.
会更容易回答 同时,这可能是因为 insert
包含 &
表示绑定变量。像这样:
insert into test (name) values ('Is this what&precaution?');
怎么办? 运行先set define off
,然后运行 insert
.