我有以下情况:我在流变量destTable中有一个表的名称,并希望将其置于简单查询中:
SELECT * FROM #[destTable]
我完全确定该表存在,调用查询的用户可以访问它,并且我的变量中的名称是正确的并且类型为String - 我确信因为如果我明确地输入表名,那么全部工作良好。我得到的错误是:
Root Exception stack trace:
java.sql.SQLSyntaxErrorException: ORA-00903: invalid table name
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:400)
at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:926)
+ 3 more (set debug level logging or '-Dmule.verbose.exceptions=true' for everything)
错误说名称无效,但正如我所说 - 我已经通过记录器等检查了名称(T_ORG)不包含空格或任何不可打印的字符。我很高兴能快速回复我错过或做错了什么,或者可能是Mule软件本身的问题?
附加信息1:没有“#[]”的查询具有语法着色(主要是棕色和黑色);但是,如果我在FROM子句之后加上#[],那么它之后的所有内容都会变成淡蓝色,就好像它是一个注释或者以某种其他方式被忽略。希望这有助于找到问题。
附加信息2:示例配置重现错误(假设您有Oracle XE等):
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns:tracking="http://www.mulesoft.org/schema/mule/ee/tracking" xmlns:jms="http://www.mulesoft.org/schema/mule/jms" xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:mulexml="http://www.mulesoft.org/schema/mule/xml"
xmlns:jdbc-ee="http://www.mulesoft.org/schema/mule/ee/jdbc" xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.3.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd
http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd
http://www.mulesoft.org/schema/mule/ee/jdbc http://www.mulesoft.org/schema/mule/ee/jdbc/current/mule-jdbc-ee.xsd
http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
http://www.mulesoft.org/schema/mule/ee/tracking http://www.mulesoft.org/schema/mule/ee/tracking/current/mule-tracking-ee.xsd ">
<jdbc-ee:connector name="Database" dataSource-ref="cdf" validateConnections="true" queryTimeout="-1" pollingFrequency="0" doc:name="Database"/>
<jdbc-ee:oracle-data-source name="cdf" user="CDF" password="CDF" url="jdbc:oracle:thin:@//localhost:1521/xe" transactionIsolation="UNSPECIFIED" doc:name="Oracle Data Source"/>
<flow name="sampleFlow" doc:name="sampleFlow">
<http:inbound-endpoint exchange-pattern="one-way" host="localhost" port="8082" doc:name="HTTP"/>
<set-variable variableName="myVar" value="T_ORG" doc:name="Variable"/>
<jdbc-ee:outbound-endpoint exchange-pattern="one-way" queryKey="selectAll" queryTimeout="-1" connector-ref="Database" doc:name="Database">
<jdbc-ee:query key="selectAll" value="SELECT * FROM #[myVar]"/>
</jdbc-ee:outbound-endpoint>
</flow>
</mule>
答案 0 :(得分:3)
只有查询的参数可以是动态的(即Mule表达式)。表中的表不能是动态的。
答案 1 :(得分:1)
经过长时间的停顿后,我意外地回到了这个主题......实际上,你可以使整个查询动态化(至少从Mule 3.3.2开始);我在这里找到了线索:Very dynamic JDBC query in Mule
这里有一个示例项目(您需要在本地运行ActiveMQ服务器和本地Oracle数据库;或者编辑代码以使其正常工作):
希望它可以帮助我,因为它帮助了我! :)