| |
alt.internet.search-engines |
> I am looking for a way to query multiple search forms and aggregate > Most forms have to be submitted in POST method. A high level query is sent to the mediator. When the query is a complex statement, that has to be But if the query is just a list of comma-delimited keywords,
> Hello
> results. The forms are NOT from common websearch engines (google and
> such) but from several editor database.
good web programmer could put this together quickly.
What you are talking about is what database developers often
refer to as a "database mediator:"
The mediator re-sends the query to N-different databases
and then collects N-different results in a a single,
concatenated answer, which is returned to the original
posting form.
translated into N-different dialects of SQL, and then sent
off to a N-different relational databases, in that case
building the mediator is a major undertaking.
then there is no query translation step to go through.
A journeyman web programmer should be able to put a
form system like that together in an hour or two.