Re: multiValued using

2010-06-08 Thread Moazzam Khan
The way I did it with SQL Server is like this: Let's say you have a field called "Company" which is multivalued, then you would declare it like this in schema.xml: in your SQL query, you would do this: select table.field1 , (select distinct cast (c.ID AS VARCHAR(10)) + ',' from tab

Re: multiValued using

2010-06-08 Thread Alberto García Sola
I had read http://wiki.apache.org/solr/DataImportHandler but I didn't realize that was for multivalued. Than you very much! On Tue, Jun 8, 2010 at 8:01 AM, Alexey Serba wrote: > Hi Alberto, > > You can add child entity which returns multiple records, i.e. > > > > > > > HTH, > Alex > >

Re: multiValued using

2010-06-07 Thread Alexey Serba
Hi Alberto, You can add child entity which returns multiple records, i.e. HTH, Alex 2010/6/7 Alberto García Sola : > Hello, this is my first message to this list. > > I was wondering if it is possible to use multiValued when using MySQL (or > any SQL-database engine) through DataImp