home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / ingres / 2199 < prev    next >
Encoding:
Text File  |  1993-01-08  |  2.3 KB  |  73 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: problem with "DESC" as column name in Windows4GL
  5. Message-ID: <leath.16.726515454@UPEI.CA>
  6. Sender: news@jupiter.sun.csd.unb.ca
  7. Organization: University of Prince Edward Island, CANADA
  8. References: <FRANKS.93Jan8155235@ntrc27.ntrc.ntu.ac.sg>
  9. Distribution: comp
  10. Date: Fri, 8 Jan 1993 17:50:54 GMT
  11. Lines: 60
  12.  
  13. In article <FRANKS.93Jan8155235@ntrc27.ntrc.ntu.ac.sg> franks@ntrc27.ntrc.ntu.ac.sg (Frank Siebenlist) writes:
  14. >From: franks@ntrc27.ntrc.ntu.ac.sg (Frank Siebenlist)
  15. >Subject: problem with "DESC" as column name in Windows4GL
  16. >Date: Fri, 8 Jan 1993 07:52:35 GMT
  17. >
  18. >If a column name of "DESC" is used,
  19. >then it seems "difficult" to access that column within Windows4GL.
  20. >
  21. >For example a script containing:
  22. >
  23. >    select :my_field = desc
  24. >    from my_table;
  25. >
  26. >yields compilation errors like:
  27. >
  28. >E_W40118 The symbol 'desc' is undefined.
  29. >
  30. >E_PW0005 Can't create variable for desc.
  31. >    A variable couldn't be declared for the ENTRYFIELD desc.  A subsequent
  32. >    error should give more information about why it couldn't be created.
  33. >
  34. >E_SY0010 Reserved word used as name.
  35. >    A variable (or other kind of object) was given the name `desc' which is
  36. >    a reserved word.  You can not use a reserved word to name an object.
  37. >
  38. >This is too bad, but it becomes worse if:
  39. >
  40. >        :my_field = my_table.desc
  41. >
  42. >yields the same error.
  43. >
  44. >As far as I know, DESC is not a reserved word for column names.
  45. >Also, other ingres programs like isql have no problem with: 
  46. >    select desc from my_table;
  47. >
  48. >Is Windows4GL too restrictive? Is this a feature or bug?
  49. >
  50. >Is there a workaround?
  51. >
  52. >Please don't tell me to rename my column names!
  53. >(They are predefined by other existing applications.)
  54. >
  55. >Regards, Frank.
  56. >
  57. >--
  58. >---------------------------------------------------
  59. >Frank Siebenlist                 <franks@ntu.ac.sg>
  60. >Senior Research Fellow
  61. >GINTIC Institute of Manufacturing Technology (GIMT)
  62. >Nanyang Technological University (NTU)
  63. >Nanyang Avenue
  64. >Singapore 2263
  65. >Tel: (65) 799-1356               Fax: (65) 791-2927
  66. >---------------------------------------------------
  67.  
  68. We had this problem when the base language changed from quel to sql. We had 
  69. a lot of instances of "desc". we had to change them all, both in the 
  70. database and applications. 
  71.  
  72. steve
  73.