> My manager wants only one interface for our search form on our intranet.
> right now i have tons of separate little DB apps that do the usual.
> each one has its own search interface, to search its own DB.
>
> i mentioned verity to him before i knew what it was, now he
> want's it in one little tight search form.
>
> correct me if i am wrong, but verity will only search text based doc's
> exct.. not database's?
>
> so how would *You* start to tie in 12-20 DB apps & all the normal
> text doc's into one thing.
> the problem i see is to keep the content relative to the pages it was
> created for.
Verity has to build the index before you can search it - therefore, as long
as you tell it what to index in the database, it'll do it
<cfquery name="myQuery" datasource="myDSN">
select ID, Body
from myTable
order by Title desc
</cfquery>
<cfindex collection="myVerity" action="update" type="custom" key="ID"
body="Body" query="myQuery">
Very simplified, but it'll do it for you
As long as you create the queries correctly, you can build/search anything
with Verity
Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133
"Websites for the real world"
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists