Answering quick cuz heading out of here:
quote:
I'll have to look a bit more into Perl. Perl is more-or-less an interpreted version of C++, right?
Not really. It has C++ like syntax and is actually written in C++. It has lots of features to make your life easier than coding it all up from scratch.
quote:
Would I need to add my own libraries to the server or is there a standard set that comes included in IIS or something?
Many libraries come with the ActiveState (Win32) build of Perl, and others, you can get. You should only have to write your own libs for very idiosyncratic stuff, e.g., the look and feel of your intranet.
quote:
Is "WordsDocuments" the "cornhole 12 35 98 142 1209" file? Or is that an example of a "Words" table?
Well the example I gave uses flat files. The WordsDocs table would be the middle table in a relational schema. You have a table of words. You have a table of docs. In between, you have a table that links them up-- shows which words go with which docs. Relational design.
quote:
Would you run the indexer manually or set it up to run automatically at some specified interval?
The latter. I use a task scheduling tool called LaunchPad but NT has built-in facilities for this.
quote:
Breaking up the dictionary into several files is done to make the search faster, yes?
Yes.
quote:
I am guessing that your script is huge.
Nope, quite small. But looking back on it I see a lot of goofy redundancies and wasted code.
No, Perl has a library called Win32::ODBC. Very cool API.
Not in a while.
---
What others say about boorite!