home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / 8889 < prev    next >
Encoding:
Text File  |  1993-01-07  |  1.2 KB  |  44 lines

  1. Newsgroups: comp.databases
  2. Path: sparky!uunet!blaze.cs.jhu.edu!circle.cs.jhu.edu!mancini
  3. From: mancini@circle.cs.jhu.edu (Todd A. Mancini)
  4. Subject: Paradox bug/feature in query form? (3.5)
  5. Message-ID: <1993Jan7.183802.12921@blaze.cs.jhu.edu>
  6. Sender: news@blaze.cs.jhu.edu (Usenet news system)
  7. Organization: Johns Hopkins Computer Science Department, Baltimore, MD
  8. Date: Thu, 7 Jan 1993 18:38:02 GMT
  9. Lines: 33
  10.  
  11.  
  12. Here's something I noticed in PDOX35, but have not yet tested in PDOX40...
  13.  
  14.   When I use a variable name in a query form from PAL (by using the
  15. ~variablename) notation, if the variable contains any wildcards they are
  16. ignored.  Is this documented?
  17.  
  18.   For example, the query:
  19.  
  20.  cust | last_name | first_name |
  21.       | check M.. | check      |
  22.       |           |            |
  23.  
  24. would find every customer whose last name begins with `M'.  However,
  25.  
  26.  LNAME = "M.."
  27.  
  28.  query
  29.  
  30.    cust | last_name    | first_name |
  31.         | check ~LNAME | check      |
  32.         |              |            |
  33.  
  34.  endquery
  35.  
  36.  DO_IT!
  37.  
  38. does NOT find these customers.  I have been able to get around this by using
  39. the TYPEIN command, but this is not elegant.  Any hints?
  40.  
  41.   -Todd
  42. (mancini@cs.jhu.edu)
  43.  
  44.