home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / ingres / 2198 < prev    next >
Encoding:
Text File  |  1993-01-08  |  2.1 KB  |  42 lines

  1. Newsgroups: comp.databases.ingres
  2. Path: sparky!uunet!cs.utexas.edu!torn!csd.unb.ca!adminteam.cs.upei.ca!leath
  3. From: leath@UPEI.CA (Steve Leath)
  4. Subject: Re: Help Facility with embedded SQL 
  5. Message-ID: <leath.15.726514779@UPEI.CA>
  6. Keywords: help, Embedded SQL 
  7. Sender: news@jupiter.sun.csd.unb.ca
  8. Organization: University of Prince Edward Island, CANADA
  9. References: <C0Ht3n.As7@usenet.ucs.indiana.edu> <1993Jan8.143411.8987@tpghq.com>
  10. Date: Fri, 8 Jan 1993 17:39:39 GMT
  11. Lines: 29
  12.  
  13.  
  14. >Have you tried the two help facilities that INGRES provides for Embedded SQL?
  15. >One of them is basically the same as you get in isql.  One is called HELPFILE
  16. >and is executed by the EXEC SQL HELPFILE subject filename command.  The other
  17. >is HELP_FRS and is executed by the EXEC FRS HELP_FRS(SUBJECT=subject,
  18. >FILE=filename) command.  Either of these provide nice help interfaces (we
  19. >use them exclusively in our application development).
  20. >
  21. >-- 
  22. >
  23. >Steve Caswell           |   (404) 448-7727    |  "The opinions expressed are my
  24. >Principal Consultant    |   sfc@tpghq.com     |   own.  They may not be perfect,
  25. >The Palmer Group        |   uunet!tpghq!sfc   |   but they're all I've got."
  26.  
  27. I set up a help facility that uses the message or prompt functions. The help 
  28. text are stored in files and when called for are loaded into a temp table 
  29. and displayed through the message or prompt functions. By using these 
  30. functions one gets away from Ingres's full screen only help (the user can 
  31. not read the help and see the form at the same time). The length of the 
  32. message and prompt boxes are sized dynamicaly by ingres and the width can be 
  33. controlled by the help facility. I encode parameters at the end of the help 
  34. file for width, placement and continuation (more pages to come, used with 
  35. prompt). In addition a VMS logical can be used to flag the facililty to open 
  36. the file with an editor before displaying it, this allows the programmers to 
  37. create help files while running the application. The facilty is no slower 
  38. than the ingres facility.  The facility is written in 4gl but could be 
  39. written in 3gl with no problem.
  40.  
  41. Steve Leath   leath@upei.ca
  42.