TOPIC: FAST!! Random Access Indexed, Relational Flat File Databases, Indexed by external Perl SDBM databases of key/value pairs tied to program "in memory" hash tables, where the Key in the Key/Value Pair is one or more fields and/or partial fields concatenated together (separated by a delimiter such as a pipe "|") and contained within the Flat File records for you to arbitrarily seek to a single record or a sorted/related group of records within your database.
Since it has been over 2 years ago since I first posted about this TOPIC I discovered, I wanted to alert the Perl community to the original thread where you can find Perl source code now for examples of how to implement Joint Database Technology/Methodology. Inparticular the King James Bible Navigator software DEMO I posted which used FlatFile/SDBM for its database. I have made this a native Windows GUI application (TreeView/RichEdit COMBO interface) to demonstrate how to show your end-users a summary of the information of the data contained within a database, and allow them to drill down to a small amount of specific information (e.g. verses within a single book/chapter) for actual viewing (and retrieving from the database). The TreeView Double Click Event was originally written to random access the first verse within a chapter, then sequentially access the remaining verses within a chapter - performing a READ for each verse. I posted a separate modified TreeView Double Click Event for you to insert into the Application which reads an entire chapter in one (1) giant READ, breaking out the individual verses (into an array) using the UNPACK statement. -- Eric
Joint Database Technology: http://www.perlmonks.org/?node_id=1121222
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Indexed Flat File databases (for ISAM, NoSQL, Perl Embedded databases)
by erix (Prior) on Oct 08, 2017 at 16:09 UTC | |
by holli (Abbot) on Oct 08, 2017 at 23:09 UTC | |
by Anonymous Monk on Oct 09, 2017 at 04:27 UTC | |
by holli (Abbot) on Oct 09, 2017 at 06:53 UTC | |
by Anonymous Monk on Oct 09, 2017 at 13:36 UTC |