未设置查询语言:为什么在使用csv数据适配器时出现此错误?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了未设置查询语言:为什么在使用csv数据适配器时出现此错误?相关的知识,希望对你有一定的参考价值。

我已将数据源配置为csv文件。配置的源看起来如下:

enter image description here

然后,我创建一个空的报告模板,并添加一个具有相同数据源的表:

enter image description here

该表已添加,如下所示:

enter image description here

但是当我尝试预览时,我收到一条错误消息:

enter image description here

我只是无法理解这个的原因。我该如何解决这个问题?

这是jrxml:

 <?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Blank_Letter" pageWidth="612" pageHeight="792" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="445d22e8-c434-459d-9696-8f6167fa66e5">
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="DataAdapter.xml"/>
    <style name="Table_TH" mode="Opaque" backcolor="#F0F8FF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
            <topPen lineWidth="0.5" lineColor="#000000"/>
            <leftPen lineWidth="0.5" lineColor="#000000"/>
            <bottomPen lineWidth="0.5" lineColor="#000000"/>
            <rightPen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <style name="Table_CH" mode="Opaque" backcolor="#BFE1FF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
            <topPen lineWidth="0.5" lineColor="#000000"/>
            <leftPen lineWidth="0.5" lineColor="#000000"/>
            <bottomPen lineWidth="0.5" lineColor="#000000"/>
            <rightPen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <style name="Table_TD" mode="Opaque" backcolor="#FFFFFF">
        <box>
            <pen lineWidth="0.5" lineColor="#000000"/>
            <topPen lineWidth="0.5" lineColor="#000000"/>
            <leftPen lineWidth="0.5" lineColor="#000000"/>
            <bottomPen lineWidth="0.5" lineColor="#000000"/>
            <rightPen lineWidth="0.5" lineColor="#000000"/>
        </box>
    </style>
    <subDataset name="Dataset1" uuid="43a885cc-1f9a-413f-a114-e5e0e287ffec">
        <property name="com.jaspersoft.studio.data.defaultdataadapter" value="DataAdapter.xml"/>
        <queryString>
            <![CDATA[]]>
        </queryString>
        <field name="Name" class="java.lang.String"/>
    </subDataset>
    <queryString>
        <![CDATA[]]>
    </queryString>
    <field name="Name" class="java.lang.String"/>
    <detail>
        <band height="332" splitType="Stretch">
            <componentElement>
                <reportElement x="207" y="132" width="200" height="200" uuid="ec75e03d-be8f-4abb-be6c-29c86cc6f2b9"/>
                <jr:table xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
                    <datasetRun subDataset="Dataset1" uuid="ae4afac3-2a54-4e7c-a3cd-c8a246f79ec4">
                        <connectionExpression><![CDATA[$P{REPORT_CONNECTION} ]]></connectionExpression>
                    </datasetRun>
                    <jr:column width="200" uuid="8d7d6c5b-2448-486d-a1e3-0a4d9e5f40a3">
                        <jr:columnHeader style="Table_CH" height="30">
                            <staticText>
                                <reportElement x="0" y="0" width="200" height="30" uuid="aabc6fa0-086b-4bba-b92c-79c0a3467048"/>
                                <text><![CDATA[Name]]></text>
                            </staticText>
                        </jr:columnHeader>
                        <jr:detailCell style="Table_TD" height="30">
                            <textField>
                                <reportElement x="0" y="0" width="200" height="30" uuid="783860ab-a9f1-402c-ab54-fa056bd29350"/>
                                <textFieldExpression><![CDATA[$F{Name}]]></textFieldExpression>
                            </textField>
                        </jr:detailCell>
                    </jr:column>
                </jr:table>
            </componentElement>
        </band>
    </detail>
</jasperReport>

我的csv看起来像这样:

Name,ID
Daphne Kub,1
Karolann Lebsack,2
Charlotte Parisian,3
Jairo Mayert,4

如果我可以添加更多输入,请告诉我。

答案

What is wrong?

你犯了很多错误。

  1. 您必须将表组件移动到标题或摘要区域,因为您只使用Dataset1子数据集,而不是主数据集。
  2. 您可以将$P{REPORT_DATA_SOURCE}传递给dataSourceExpression。

Working example

您甚至不需要声明主数据集(我在此示例中删除了它)。

jrxml将是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Blank_Letter" pageWidth="612" pageHeight="792" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" uuid="445d22e8-c434-459d-9696-8f6167fa66e5">
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="DataAdapter.xml"/>
    <subDataset name="Dataset1" uuid="43a885cc-1f9a-413f-a114-e5e0e287ffec">
        <property name="com.jaspersoft.studio.data.defaultdataadapter" value="DataAdapter.xml"/>
        <queryString>
            <![CDATA[]]>
        </queryString>
        <field name="Name" class="java.lang.String"/>
    </subDataset>
    <title>
        <band height="60" splitType="Stretch">
            <componentElement>
                <reportElement x="180" y="0" width="200" height="60" uuid="ec75e03d-be8f-4abb-be6c-29c86cc6f2b9"/>
                <jr:table xmlns:jr="http://jasperreports.sourceforge.net/jasperreports/components" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports/components http://jasperreports.sourceforge.net/xsd/components.xsd">
                    <datasetRun subDataset="Dataset1" uuid="85f0f7ec-24c1-49f2-bde8-0287a608d0e0">
                        <dataSourceExpression><![CDATA[$P{REPORT_DATA_SOURCE}]]></dataSourceExpression>
                    </datasetRun>
                    <jr:column width="200" uuid="8d7d6c5b-2448-486d-a1e3-0a4d9e5f40a3">
                        <jr:columnHeader height="30">
                            <staticText>
                                <reportElement x="0" y="0" width="200" height="30" uuid="aabc6fa0-086b-4bba-b92c-79c0a3467048"/>
                                <text><![CDATA[Name]]></text>
                            </staticText>
                        </jr:columnHeader>
                        <jr:detailCell height="30">
                            <textField>
                                <reportElement x="0" y="0" width="200" height="30" uuid="783860ab-a9f1-402c-ab54-fa056bd29350"/>
                                <textFieldExpression><![CDATA[$F{Name}]]></textFieldExpression>
                            </textField>
                        </jr:detailCell>
                    </jr:column>
                </jr:table>
            </componentElement>
        </band>
    </title>
</jasperReport>

JSS的结果将是:

Preview at JSS

以上是关于未设置查询语言:为什么在使用csv数据适配器时出现此错误?的主要内容,如果未能解决你的问题,请参考以下文章

在自定义适配器上使用.getFilter()时出现问题(未正确过滤)(Android)

使用 SEM_MATCH 函数运行查询时出现“未安装 JAVAVM”

为啥我在 Scriptella 中输出 CSV 文件时出现双引号?

查找表时出现查找表未初始化错误

Next-Auth:无法读取未定义的属性“适配器”

Apollo GraphQL iOS - 尝试在查询中使用“ID”时出现“未找到生成的操作”错误