 |
| Click on an icon to see it's
properties |
TrbMake
rbMake1
This component reads text from the Text link, indexes the words, then saves the
words and their indexes to the Words link |
| | |
| |
Text
Link
rbMakeTextTableLink1
Rubicon component used to read selected fields from the Text table |
Words
Link
rbMakeWordsTableLink1
Rubicon component used to create and access the Words table |
| | |
| |
Database
Engine
Borland Database Engine via TTable
(Rubicon supports TQuery's and several other database engines) |
| | |
| |
Text
Table
TextTable
The table being indexed. Must contain a unique integer field used by Rubicon
to keep track of the record's location. |
Words
Table
WordsTable
Table created by the Words link that stores the Rubicon indexes. Usually the
same table format as the Text table. |
Other Components
rbCache1: used by rbMake1 to store words and indexes
in memory
rbProgressDialog1: reports the progress of the
TrbMake component (optional)
rbAccept1: used to accept or reject words for
indexing (optional)
Coding
procedure TForm1.Button1Click(Sender: TObject);
begin
rbMake1.Execute
end;
As you can see, after the components are set up in the IDE there
is not much coding left to do. If you need to abort a lengthy build, just press the
Cancel button in the TrbProgressDialog component.
See Also
|