Re: Data Access

2002-11-18 Thread Tom Allison
Paul wrote: --- Tom Allison <[EMAIL PROTECTED]> wrote: My first guess is to use "tie" to access a file of type DB_File. The number of records is small <1000 but the record structure is going to be either a hash of hashes, hash of arrays, or similar. One possible solution depends on your data

Re: Data Access

2002-11-16 Thread Paul
--- Tom Allison <[EMAIL PROTECTED]> wrote: > My first guess is to use "tie" to access a file of type DB_File. > The number of records is small <1000 but the record structure is > going to be either a hash of hashes, hash of arrays, or similar. One possible solution depends on your data structure

Data Access

2002-11-16 Thread Tom Allison
I have an application that needs to attach to some data which it is running. I initially started by using Storable.pm and see a potential problem with data synchronization between different applications running. I think I need to change this to another type of data IO method. My first guess is