Euphoria Database System
- Posted by Robert Craig <rds at ATTCANADA.NET> Mar 07, 2000
- 570 views
I've uploaded an alpha release of a Euphoria database system (EDS) that's well suited to storing and retrieving Euphoria data. An EDS database consists of 0 or more tables. Each table contains 0 or more records. Each record consists of a key part and a data part. There are no limits on the size or shape of any of the keys or data that you store in a database. Any Euphoria atom or sequence can be stored, and they are stored using a compact representation. Keys are looked up quickly by binary search, but you can also access records randomly by record number. The space for deleted items is put on a free list and recycled automatically. database.e works without change across Linux, DOS and Windows. database files can be shared between Linux and DOS/Windows. Try it out and let me know if this comes close to meeting your database needs. The demo programs are rather crude. You should try your own experiments, but don't trust it yet with all of your valuable data! Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com