从数据库表中获取全部数据到 solr
我想从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
SELECT * FROM tdiamonds
作为查询并添加 dynamicField schema.xml 中的'*'
Try
SELECT * FROM tdiamonds
as the query and add a dynamicField'*'
in schema.xml