I am working with verity, querying and searching
through an SQL-table.
<cfquery name="foo" datasource="foo-db" dbtype="ODBC">
select *
from foo_table
</cfquery>
The above query I use for indexing.
Then I work with cfindex like the following
<cfindex action=""> collection="foo_collection"
key="ID"
type="CUSTOM"
title="article_title"
query="foo"
body="article_text"
custom1="article_fulltext"
custom2="article_category"
language="English">
In cfsearch I want to output the following
fields:
article_category
article_source
article_year
article_author
article_title
article_text
article_fulltext (full document/URL)
But I can only put 4-5 fields in the right order with
cfindex but I need 7 fields. I tried custom3 and more
but this didn't work since I believe you can only use
custom1 and custom2.
How can I overcome this limit ?
Any ideas ?
Uwe
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

