0

我使用 jdbc 连接创建了一个简单的 xaction。该操作成功但得到一个空白报告。

结果集未显示。

enter code here
<?xml version="1.0" encoding="UTF-8"?>
<action-sequence> 
<title>latest1</title>
<version>1</version>
<logging-level>TRACE</logging-level>
<documentation> 
<author>reskin</author>  
<description>Empty blank action sequence document</description>  
<help/>  
<result-type>none</result-type>  
<icon/> 
</documentation>

<inputs/>

<outputs> 
<resultset type="result-set" is-output-parameter="false"> 
<destinations> 
<response>resultset</response> 
</destinations> 
</resultset> 
</outputs>

<resources/>

<actions> 
<action-definition> 
  <component-name>SQLLookupRule</component-name>
  <action-type>Relational</action-type>
  <action-outputs> 
    <query-result type="result-set" mapping="resultset"/> 
  </action-outputs>
  <component-definition> 
    <query><![CDATA[select * from cust_txn_list]]></query>  
    <live><![CDATA[true]]></live>  
    <driver><![CDATA[com.mysql.jdbc.Driver]]></driver>  
    <connection><![CDATA[jdbc:mysql://localhost:3306/hive_sample]]></connection>  
    <user-id><![CDATA[root]]></user-id>  
    <password><![CDATA[553450]]></password> 
  </component-definition> 
 </action-definition>

</actions> 
</action-sequence>

我在 BI 服务器日志中收到以下警告消息

Parameters: Invalid chunk '' ignored. is the warning 
4

1 回答 1

0

我的问题解决了。问题是由于输出参数,“输出参数复选框应该始终选中。

于 2012-08-13T06:02:33.390 回答