我在 pentaho 中使用 CDE 插件我正在创建一个仪表板,其中包含 CDE 仪表板中的 xaction 的结果,谁能告诉我如何在 CDE 仪表板中得出 xaction 我将 xaction 作为组件包括在内,但在预览中没有结果,因为 xaction 产生
组件要求名称路径操作解决方案
我应该在这里输入什么
这是我的 xaction
<?xml version="1.0" encoding="UTF-8"?>
<action-sequence>
<title>nov12xaction</title>
<version>1</version>
<logging-level>ERROR</logging-level>
<documentation>
<author>hussain</author>
<description>Empty blank action sequence document</description>
<help/>
<result-type>text</result-type>
<icon/>
</documentation>
<inputs/>
<outputs>
<query_result type="result-set"/>
</outputs>
<resources/>
<actions>
<action-definition>
<component-name>SQLLookupRule</component-name>
<action-type>Relational</action-type>
<action-outputs>
<query-result type="result-set" mapping="query_result"/>
</action-outputs>
<component-definition>
<query><![CDATA[select * from student where pointer > 30;]]></query>
<live><![CDATA[true]]></live>
<driver><![CDATA[com.jdbc.odbc.Driver]]></driver>
<connection><![CDATA[jdbc:mysql://localhost:3306/xactionstudy]]></connection>
<user-id><![CDATA[root]]></user-id>
<password><![CDATA[root]]></password>
</component-definition>
</action-definition>
</actions>
</action-sequence>