Hi, firstly some things to mention;
- only one plug-in DLL at a time is supported
- if you enter the query in the index manager tool, you shouldn't need to reenter the query again to reimport, you just reimport the existing source (but I understand why you want to do it as a plugin)
There are a couple of ways you can approach this.
1. If you don't mind NOT using the index manager tool, windows service or web admin to do imports then you can index data programmatically. I.e. your own EXE does the indexing.
2. Closer to what you're asking for is "Custom DataSet Provider" (see
http://keyoti.com/produc...UserGuide/Importing.htm) Basically you create an assembly with a class that has a method like public DataSet GetDataSet(int firstRow, int numberOfRows){....} in it. You do an import choosing Custom DataSet Provider, and specify the assembly path and class name (including namespace). The GetDataSet method will be called by the indexer and you can then obtain the data you want to index and return it. It supports paging so that method will be called as many times as necessary.
We don't get asked many questions about #2 so I don't know if our documentation is sufficient or not, just ask if unsure about it please.
Best
Jim
-your feedback is helpful to other users, thank you!-your feedback is helpful to other users, thank you!