Swaledale Sheep as seen while walking from Richmond to Ingleby Cross in North Yorkshire, England, September 2007.
© 2008
|
|
|
| |
Back to home for Jon Miniat
Caprock Dictionary Object Component
The Caprock Dictionary Object is a COM component that is thread-safe and can be used in any scripting environment such as ASP with IIS.
The dictionary component is perfect to use as a repacement for the ASP "Scripting.Dictionary" object. Additionaly, unlike
Scripting.Dictionary, the Caprock Dictionary component can be used within Session objects and Application objects in ASP!
If you are looking for a way to store a recordset in the session or application object, this is a perfect method.
If you need a way to store large amounts of data and need the fast lookup (such as what was offered in the Lookup Component from Microsoft),
then this is ideal.
>> Click here to download the Caprock Dictionary Object Component.
Sample:
Dim d
Set d = CreateObject("Caprock.Dictionary")
d.add "a", "Athens"
d.add "b", "Belgrade"
d.add "c", "Cairo"
|
|