home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / biz / dbase / db / product-info < prev    next >
Encoding:
Text File  |  1995-10-21  |  2.5 KB  |  86 lines

  1. .name
  2. db
  3. .version
  4. 2.8
  5. .type
  6. Database
  7. .aminet-dir
  8. biz/dbase
  9. .author
  10. David Ekholm, Datadosen
  11. .date
  12. 1995.08.26
  13. .distribution
  14. Freeware (Postcardware)
  15. .address
  16. Mantalsvägen 33
  17. s-175 43  JÄRFÄLLA
  18. Sweden
  19. .email
  20. david-ek@dsv.su.se
  21. .installsize
  22. 55K - 450K
  23. The is a general database program, localized and has ARexx.
  24. .construction
  25. SAS/C 6.55 (Optimized for time.)
  26. .tested
  27. A4000(18 MB mem,  OS3.0, 68040 processor)
  28. .docs
  29. db2.8/docs/db.guide
  30. .short
  31. Database with GadTool look.
  32. .description
  33. db is a small and fast database program that I wrote after having tested
  34. numerous other PD database programs and always found something lacking or
  35. irritating me. They might have dozzens of features not found in db, but
  36. they lacked font sensitivity and a standard GUI look and OS 3.0 behaviour.
  37.  
  38. My main need was to keep record on addresses and telephone numbers of friends
  39. and companies. Before v2.0 db was fixed to be just an address and telephone
  40. database, but that has changed. The program is designed to handle information
  41. of your choice. Currently you have to use a file editor to specify the
  42. database fields and layout as there is no GUI for that.
  43. Anyway that's a one time job, then you just USE the database and have fun.
  44.  
  45. Complete GUI support will probably only be included in a future ShareWare
  46. version. (I might call it REG or db3.0)
  47.  
  48. A partial list of db's features include:
  49.  
  50.     o Dynamic memory handling. Number of records and fields only limited by
  51.       free memory.
  52.     o GadTool based. (Use fields of string, checkbox and cycle type)
  53.     o Mouse and keyboard driven.
  54.     o User definable fields and layout.
  55.     o Multiple views of the same database.
  56.     o Commodore's Clipboard for flexible interaction with other programs.
  57.     o AppWindow -just drag and drop database icons on db to load.
  58.     o Online MenuHelp -Press HELP key when selecting a menu item.
  59.     o Font sensitivity.
  60.     o ARexx
  61.     o ASL requesters for flexible loads and saves.
  62.     o Localized
  63.     o Dial numbers using a modem or loudspeaker
  64.     o WB and Shell usage with Commodore's template parsing
  65.     o Fast and flexible find function using AmigaDOS patterns.
  66.     o Filter function.
  67.     o Listview browser.
  68.     o Fast and flexible sort function. Multiple sort orders can be specified.
  69.     o 'Export View' and two standard ASCII export features.
  70.     o Automatic ASCII import (tab-separated ASCII)
  71. .execute
  72. set choice `RequestChoice "db" "Please select an option" "View Guide" "Run Program" "Cancel"`
  73. if $choice EQ "0"
  74.   quit 5
  75. endif
  76.  
  77. if $choice EQ "1"
  78.   cd Docs
  79.   MetaTool db.guide GUIDE
  80.   cd /
  81. endif
  82.  
  83. if $choice EQ "2"
  84.   db
  85. endif
  86.