从数据库表中获取全部数据到 solr

发布于 2024-11-08 14:07:08 字数 829 浏览 0 评论 0原文

我想从 MySQL 数据库获取表的所有数据(所有行和列)到 solr。我怎样才能实现这一点。目前我能够从数据库表中获取特定列。我的 db-data-config.xml 是:

<dataConfig>
    <dataSource type="JdbcDataSource" driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://192.168.1.9:3306/angara" user="root" password="ampliflex" />
    <document>
         <entity name="tdiamonds" query="select UID_PK, ProductUID, name, price,Weight from tdiamonds">

            <field column="UID_PK" name="id"/>
            <field column="ProductUID" name="product_uid"/>
            <field column="name" name="dname"/>
            <field column="price" name="dprice"/>
            <field column="Weight" name="dweight"/>

          </entity>
    </document>
</dataConfig>

现在我想知道我应该使用什么查询语法,以便我可以获取所有数据或者真的可能吗?

i want to fetch all data( all rows and columns) of a table from MySQL database to solr. how can i achieve this.currently i am able to fetch specific columns from the database table. my db-data-config.xml is:

<dataConfig>
    <dataSource type="JdbcDataSource" driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://192.168.1.9:3306/angara" user="root" password="ampliflex" />
    <document>
         <entity name="tdiamonds" query="select UID_PK, ProductUID, name, price,Weight from tdiamonds">

            <field column="UID_PK" name="id"/>
            <field column="ProductUID" name="product_uid"/>
            <field column="name" name="dname"/>
            <field column="price" name="dprice"/>
            <field column="Weight" name="dweight"/>

          </entity>
    </document>
</dataConfig>

now i want to know what query syntax i should use so that i can fetch all data or is it really possible??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-11-15 14:07:08

尝试使用 SELECT * FROM tdiamonds 作为查询并添加 dynamicField schema.xml 中的 '*'

Try SELECT * FROM tdiamonds as the query and add a dynamicField '*' in schema.xml

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文