home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / database / 8975 < prev    next >
Encoding:
Internet Message Format  |  1993-01-10  |  1.4 KB

  1. Path: sparky!uunet!gatech!emory!wupost!csus.edu!netcom.com!netcomsv!cruzio!rhaven
  2. From: rhaven@cruzio.santa-cruz.ca.us
  3. Newsgroups: comp.databases
  4. Subject: Re: Paradox bug/feature in query form? (3.5)
  5. Summary: Wildcard Varibles in Paradox QBE
  6. Message-ID: <4896@cruzio.santa-cruz.ca.us>
  7. Date: Sat, 09 Jan 93 22:08:02 PST
  8. References: <1993Jan7.183802.12921@blaze.cs.jhu.edu>
  9. Sender: rhaven@cruzio.santa-cruz.ca.us
  10. Reply-To: rhaven@cruzio.santa-cruz.ca.us
  11. Lines: 32
  12.  
  13.  
  14.  
  15. It is a known and expected behavior.  There is really no way to have 
  16. tilde variables (variables in query statements) be able to both
  17. represent literal text and have wildcards in theme.
  18.  
  19. One alternative is to use a more UI driven technique.
  20.  
  21. CLEARALL
  22. MENU {Ask} SELECT "Cust"     ;;   you can use a variable here if you want
  23.      [Last_name] = variable + ".."    ;;    assign the query fields
  24. ;;    as if they were data fields
  25. MOVETO [Last_Name]     CHECK
  26. MOVETO [First_Name]    CHECK
  27.  
  28. DO_IT!
  29.  
  30. This technique allows a lot more flexibility because any string expression
  31. can be assigned to a Query field.  Example elements can be assigned like:
  32.  
  33.     [Link Field] = "_xyz"
  34.  
  35. You can set the keywords in the far left column like this:
  36.  
  37.     [#] = "delete"
  38.  
  39. You must move to the field to set Checkmarks, however.   There are several
  40. conversion scripts on Compuserv which will write this sort of code for
  41. a Query on the workspace.
  42.  
  43. Cheers
  44.  Richard
  45.