How to resolve SQL query parameters mapping issues while using Oracle OLE DB provider?(使用 Oracle OLE DB 提供程序时如何解决 SQL 查询参数映射问题?)
问题描述
尝试使用 Oracle OLE DB 提供程序输入带参数的 SQL 查询时,出现以下错误:
When trying to enter a SQL query with parameters using the Oracle OLE DB provider I get the following error:
无法从 SQL 命令中提取参数.提供程序可能无法帮助解析命令中的参数信息.在这种情况下,请使用来自变量的 SQL 命令"访问模式,将整个 SQL 命令存储在一个变量中.
附加信息:
Provider 无法导出参数信息,并且尚未调用 SetParameterInfo.(Microsoft OLE DB Provider for Oracle)
Parameters cannot be extracted from the SQL command. The provider might not help to parse parameter information from the command. In that case, use the "SQL command from variable" access mode, in which the entire SQL command is stored in a variable.
ADDITIONAL INFORMATION:
Provider cannot derive parameter information and SetParameterInfo has not been called. (Microsoft OLE DB Provider for Oracle)
我尝试遵循此处的建议,但不太明白需要什么:针对 Oracle 的参数化查询
I have tried following the suggestion here but don't quite understand what is required:Parameterized queries against Oracle
有什么想法吗?
推荐答案
扩展问题中给出的链接:
To expand on the link given in the question:
- 创建包变量
- 双击包变量名称.(这允许您访问变量的属性)
- 将属性EvaluateAsExpression"设置为 true
- 在表达式构建器中输入查询.
- 将 OLE DB 源查询设置为来自变量的 SQL 命令
表达式构建器可以使用变量动态创建表达式以创建参数化查询".
所以下面的正常"查询:
The expression builder can dynamically create expressions using variable to create 'parametised queries'.
So the following 'normal' query:
select * from book where book.BOOK_ID = ?
可以在表达式生成器中写成:
Can be written in the expression builder as:
"select * from book where book.BOOK_ID = " + @[User::BookID]
然后您可以使用表达式构建器进行空值处理和数据转换.
You can then do null handling and data conversion using the expression builder.
这篇关于使用 Oracle OLE DB 提供程序时如何解决 SQL 查询参数映射问题?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Oracle OLE DB 提供程序时如何解决 SQL 查询参数映射问题?
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01