Reputation: 21
I'm trying to read data from a database that I don't know and that has the following structure:
cur
|
|
---- FILE ----
| rs_pers.dat
| rs_pers.fmt
| rs_pers.idx
| ..............
| WS_FTP.LOG
|
---- red7-----
| 77008
| .........
|
---- sys------
| db.DAT
| db.idx
| ........
|
|
cee_ap
name.idx
name.dat
...........
isam.log
tmpout3384.txt
Does anyone know which database is and how to read it ? Thanks
Upvotes: 0
Views: 193
Reputation: 21
Almost certainly it was created in the TODAY programming language (itself created by TodaySystems). TODAY is a very old (20 years?) language that doesn't appear to have been widely used, though it seems to form the core of the 4GL BuilderProfessional development environment.
In answer to "how do I read it?", you should be able to find the file format in the .FMT file and then read from the .DAT (which is a flatfile) according to that format.
I've recently come across a TODAY app myself and am keen to find any documentation for it!
JC
Upvotes: 2