home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / new / biz / dbase / datamaster / product-info < prev    next >
Encoding:
Fred Fish's Product-Info  |  1995-08-25  |  2.3 KB  |  80 lines

  1. .name
  2. DataMaster
  3. .type
  4. Database
  5. .short
  6. Flat file database.
  7. .description
  8.     Data Master is a database program programmed for Amiga computers.
  9. It's not the best database program for Amiga (the best shareware data-
  10. base program??), but it's cheap and specially made for the average
  11. user.
  12.     In the program there are five different field types which are
  13. string (text), integer, floating point, type (selection) and boolean
  14. field types. In one record can be up to 256 different fields and the
  15. number of records is practically limited only by the size of the free
  16. memory. Records can be sorted based on eight key fields.
  17.     You can search from the database those records which match search
  18. patterns given by the user (for example, all records whose first 
  19. field's first letter is A). You can also search for text strings from
  20. the whole database. Using Data Master it's possible to print the data-
  21. base for printer or save it as an ASCII file to the disk. Number
  22. fields can be displayed on the screen as graphic diagrams, and using
  23. this function you can simply compare records. There is a separate
  24. field editor for the creating of the fields. Records can be, of
  25. course, moved, copied, deleted or cleared as a single record or as
  26. a block which includes many records. 
  27.     In the following table there are some maximum values used by the
  28. program.
  29.  
  30.  The number of records            99999 (memory limits also)
  31.  The number of fields             256
  32.  The number of alternative texts  256
  33.   (type fields)          
  34.  The length of the field title    13
  35.  The length of the string field   255
  36.  The length of the unit string    9
  37.  The number of key fields         8
  38. .version
  39. 1.02N
  40. .date
  41. 1994.12.18
  42. .author
  43. Teemu Sipilä
  44. .distribution
  45. Shareware
  46. .price
  47. 25 DM, 10£
  48. .address
  49. Koskitie 25
  50. FIN-12380 Leppäkoski
  51. Finland
  52. .docs
  53. DataMaster.readME
  54. DataMasterManual
  55. Help.txt
  56. OrderForm
  57. .described-by
  58. Richard Fish (rjf@amigalib.com)
  59. .submittal
  60. Submitted on disk directly by the author.
  61. .aminet-dir
  62. biz/dbase
  63. .execute
  64. LAB Start
  65. set choice `RequestChoice "Options Selection" "Please select an option" "View ReadMe" "View Manual" "Run Program" "Cancel"`
  66. if $choice GT "0"
  67.   if $choice EQ "1"
  68.     MetaTool DataMaster.readME TEXT
  69.   else
  70.     if $choice EQ "2"
  71.       MetaTool DataMasterManual TEXT
  72.     else
  73.       if $choice EQ "3"
  74.         wbrun DataMaster
  75.       endif
  76.     endif
  77.   endif
  78.   skip Start BACK
  79. endif
  80.